嘟嘟社区

[疑问] v2ray 配置请教


本帖最后由 sea912 于 2024-10-18 13:06 编辑

– name: "ss3"
    type: ss
    server: server
    port: 443
    cipher: chacha20-ietf-poly1305
    password: "password"
    plugin: v2ray-plugin
    plugin-opts:
      mode: websocket # no QUIC now
      tls: true # wss
      # 可使用 openssl x509 -noout -fingerprint -sha256 -inform pem -in yourcert.pem 获取
      # 配置指纹将实现 SSL Pining 效果
      # fingerprint: xxxx
      # skip-cert-verify: true
      # host: bing.com
      # path: "/"
      # mux: true
      # headers:
      #   custom: value
      # v2ray-http-upgrade: false
      # v2ray-http-upgrade-fast-open: false
这个是clash中的配置

对应的 v2ray 服务端怎么配置呀

写了个配置 ,直接使用的acme root目录下的证书.总是提示我   remote error: tls: bad certificate

以下是对应的 V2Ray 客户端 JSON 配置:
  1. {
  2.   "inbounds": [
  3.     {
  4.       "port": 1080,
  5.       "listen": "127.0.0.1",
  6.       "protocol": "socks",
  7.       "settings": {
  8.         "auth": "noauth",
  9.         "udp": true,
  10.         "ip": "127.0.0.1"
  11.       }
  12.     }
  13.   ],
  14.   "outbounds": [
  15.     {
  16.       "protocol": "shadowsocks",
  17.       "settings": {
  18.         "servers": [
  19.           {
  20.             "address": "server",
  21.             "port": 443,
  22.             "method": "chacha20-ietf-poly1305",
  23.             "password": "password"
  24.           }
  25.         ]
  26.       },
  27.       "streamSettings": {
  28.         "network": "ws",
  29.         "security": "tls",
  30.         "wsSettings": {
  31.           "path": "/"
  32.         },
  33.         "tlsSettings": {
  34.           "allowInsecure": false
  35.         }
  36.       }
  37.     }
  38.   ]
  39. }

复制代码

疯狂の猿猴 发表于 2024-10-18 12:57
以下是对应的 V2Ray 客户端 JSON 配置:

客户端 clash的配置应该是没问题,好像是服务端的问题
https://github.com/v2fly/v2ray-examples/blob/master/Shadowsocks-Websocket-Web-TLS/config_server.json
官方的配置里面没看到tls的配置 难道还要nginx

证书要用fullchain
还在用SS啊,这都更新换代多少代了,还不换

wps 发表于 2024-10-18 13:52
证书要用fullchain

用的就是这个

MJJ不爱买鸡鸡 发表于 2024-10-18 13:54
还在用SS啊,这都更新换代多少代了,还不换

这个clash配置 里面ss +ws + tls 有个 mux的配置 我想来试试看