Update config_client.json

This commit is contained in:
Clarence Gui 2020-08-01 21:43:29 +08:00 committed by GitHub
parent e97438a9d0
commit f586460bd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,36 +2,65 @@
"log": { "log": {
"loglevel": "warning" "loglevel": "warning"
}, },
"inbound": { "routing": {
"port": 6789, "domainStratedy": "AsIs",
"listen": "127.0.0.1", "rules": [
"protocol": "socks", {
"settings": { "type": "field",
"auth": "noauth", "ip": [
"udp": false, "geoip:private"
"ip": "127.0.0.1" ],
} "tag": "direct"
}
]
}, },
"outbound": { "inbounds": [
"protocol": "socks", {
"settings": { "listen": "127.0.0.1",
"servers": [ "port": "1080",
{ "protocol": "socks",
"address": "you server", "settings": {
"port": 443, "auth": "noauth",
"users": [ "udp": "true",
{ "ip": "127.0.0.1"
"user": "hello", }
"pass": "3.1415",
"level": 0
}
]
}
]
}, },
"streamSettings": { {
"network": "tcp", "listen": "127.0.0.1",
"security": "tls" "port": "1081",
"protocol": "http"
} }
} ],
"outbounds": [
{
"protocol": "socks",
"settings": {
"server": [
{
"address": "",
"port": 1234,
"users": [
{
"user": "",
"pass": ""
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"serverName": "example.domain",
"allowInsecure": false
}
},
"tag": "proxy"
},
{
"protocol": "freedom",
"tag": "direct"
}
]
} }