Files
v2ray-nginx-docker/docker-conf/config.json
T

31 lines
546 B
JSON
Raw Normal View History

2020-05-02 11:06:19 +01:00
{
2020-05-08 23:18:53 +01:00
"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": {}
}
2020-05-02 11:06:19 +01:00
}