mirror of
https://github.com/10h30/v2ray-nginx-docker.git
synced 2026-06-05 15:09:38 +09:00
31 lines
546 B
JSON
31 lines
546 B
JSON
{
|
|
"log": {
|
|
"access": "/var/log/v2ray/access.log",
|
|
"error": "/var/log/v2ray/error.log",
|
|
"loglevel": "debug"
|
|
},
|
|
"inbound": {
|
|
"port": LISTENING_PORT,
|
|
"listen": "127.0.0.1",
|
|
"protocol": "vmess",
|
|
"settings": {
|
|
"clients": [
|
|
{
|
|
"id": "CLIENT_ID",
|
|
"alterId": CLIENT_ALTERID
|
|
}
|
|
]
|
|
},
|
|
"streamSettings": {
|
|
"network": "ws",
|
|
"wsSettings": {
|
|
"path": "CLIENT_WSPATH"
|
|
}
|
|
}
|
|
},
|
|
"outbound": {
|
|
"protocol": "freedom",
|
|
"settings": {}
|
|
}
|
|
}
|