diff --git a/VLESS-TCP-XTLS-Multi-Web-Nginx/config_server.json b/VLESS-TCP-XTLS-Multi-Web-Nginx/config_server.json new file mode 100644 index 0000000..9482c3f --- /dev/null +++ b/VLESS-TCP-XTLS-Multi-Web-Nginx/config_server.json @@ -0,0 +1,58 @@ +{ + "log": { + "loglevel": "warning" + }, + "inbounds": [ + { + "listen": "127.0.0.1", // 本地传输不需要对外打开端口 + "port": 8080, + "protocol": "vless", + "settings": { + "clients": [ + { + "id": "", // 填写你的 UUID + "flow": "xtls-rprx-direct", + "level": 0, + "email": "love@v2fly.org" + } + ], + "decryption": "none", + "fallbacks": [ + { + "dest": 80, // 默认回落到 Nginx 的 Web 上 + "xver": 1 + }, + { + "alpn": "h2", + "dest": 80, + "xver": 1 + } + ] + }, + "streamSettings": { + "network": "tcp", + "tcpSettings": { + "acceptProxyProtocol": true // 传递真实来源 IP 和端口 + }, + "security": "xtls", + "xtlsSettings": { + "alpn": [ + "h2", + "http/1.1" + ], + "certificates": [ + { + "certificateFile": "/path/to/fullchain.crt", // 换成你的证书,绝对路径 + "keyFile": "/path/to/private.key" + } + ] + } + } + } + ], + "outbounds": [ + { + "protocol": "freedom" + } + ] +}