| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "log": {
- "loglevel": "debug"
- },
- "inbounds": [
- {
- "listen": "127.0.0.1",
- "port": "1080",
- "protocol": "socks",
- "settings": {
- "auth": "noauth",
- "udp": true,
- "ip": "127.0.0.1"
- }
- }
- ],
- "outbounds": [
- {
- "protocol": "vmess",
- "settings": {
- "vnext": [
- {
- "address": "127.0.0.1",
- "port": 1234,
- "users": [
- {
- "id": ""
- }
- ]
- }
- ]
- },
- "streamSettings": {
- "network": "ws",
- "security": "tls",
- "tlsSettings": {
- "serverName": "example.org",
- "certificates": [
- {
- "certificateFile": "/path/to/certificate.crt",
- "keyFile": "/path/to/private.key"
- }
- ]
- },
- "wsSettings": {
- "maxEarlyData": 2048,
- "earlyDataHeaderName": ""
- }
- }
- }
- ]
- }
|