Update config_server.json

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

View File

@ -1,24 +1,34 @@
{ {
"log": { "log": {
"access": "/var/log/v2ray/access.log",
"error": "/var/log/v2ray/error.log",
"loglevel": "warning" "loglevel": "warning"
}, },
"inbound": { "routing": {
"port": 443, "domainStrategy": "AsIs",
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
"outboundTag": "block"
}
]
},
"inbounds": [
{
"listen": "0.0.0.0",
"port": 1234,
"protocol": "socks", "protocol": "socks",
"settings": { "settings": {
"auth": "password", "auth": "password",
"accounts": [ "accounts": [
{ {
"user": "hello", "user": "",
"pass": "3.1415" "pass": ""
} }
], ],
"udp": false, "udp": true,
"ip": "127.0.0.1", "ip": "127.0.0.1"
"timeout": 0,
"userLevel": 0
}, },
"streamSettings": { "streamSettings": {
"network": "tcp", "network": "tcp",
@ -26,50 +36,22 @@
"tlsSettings": { "tlsSettings": {
"certificates": [ "certificates": [
{ {
"certificateFile": "/etc/v2ray/v2ray.crt", "certificateFile": "/path/to/certificate.crt",
"keyFile": "/etc/v2ray/v2ray.key" "keyFile": "/path/to/key.key"
} }
] ]
} }
} }
}, }
"outbound": { ],
"outbounds": [
{
"protocol": "freedom", "protocol": "freedom",
"settings": {} "tag": "direct"
}, },
"outboundDetour": [
{ {
"protocol": "blackhole", "protocol": "blackhole",
"settings": {}, "tag": "block"
"tag": "blocked"
}
],
"routing": {
"strategy": "rules",
"settings": {
"rules": [
{
"type": "field",
"ip": [
"0.0.0.0/8",
"10.0.0.0/8",
"100.64.0.0/10",
"127.0.0.0/8",
"169.254.0.0/16",
"172.16.0.0/12",
"192.0.0.0/24",
"192.0.2.0/24",
"192.168.0.0/16",
"198.18.0.0/15",
"198.51.100.0/24",
"203.0.113.0/24",
"::1/128",
"fc00::/7",
"fe80::/10"
],
"outboundTag": "blocked"
} }
] ]
} }
}
}