1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
| { "log": { "access": "", "error": "", "loglevel": "warning" }, "inbounds": [ { "tag": "proxy", "port": 1089, "listen": "127.0.0.1", //监听本机 "protocol": "socks", //socks5代理 "sniffing": { "enabled": true, "destOverride": ["http", "tls"] }, "settings": { "auth": "noauth", "network": "tcp,udp" } }, { "tag": "proxy-docker", "port": 1089, "listen": "172.17.0.1", //监听容器 "protocol": "socks", //socks5代理 "sniffing": { "enabled": true, "destOverride": ["http", "tls"] }, "settings": { "auth": "noauth", "network": "tcp,udp" } }, { "listen": "127.0.0.1", //监听本机 "port": 8889, "protocol": "http", //http代理 "sniffing": { "enabled": true, "destOverride": ["http", "tls"] }, "settings": { "network": "tcp,udp", "auth": "noauth" }, "tag": "http" }, { "listen": "172.17.0.1", //监听容器 "port": 8889, "protocol": "http", //http代理 "sniffing": { "enabled": true, "destOverride": ["http", "tls"] }, "settings": { "network": "tcp,udp", "auth": "noauth" }, "tag": "http-docker" } ], "outbounds": [ //outbounds部分,就是根据你自己节点情况修改,如果不知道怎么改,就用第三方客户端导出配置文件,替换一下这一部分就可以了。 { "_QV2RAY_USE_GLOBAL_FORWARD_PROXY_": false, "mux": { "concurrency": 1, "enabled": null }, "protocol": "vless", "sendThrough": "0.0.0.0", "settings": { "vnext": [ { "address": "xxx.com", "port": 443, "users": [ { "encryption": "none", "id": "xxx-xxxx" } ] } ] }, "streamSettings": { "network": "ws", "security": "tls", "tlsSettings": { "serverName": "xx.gq" }, "wsSettings": { "path": "/xx" } }, "tag": "" } ], "stats": {} }
|