From 3180f27c665243641ad7528057572242286d46b2 Mon Sep 17 00:00:00 2001 From: Clarence Gui <55305469+Sanczzg@users.noreply.github.com> Date: Sat, 1 Aug 2020 21:44:14 +0800 Subject: [PATCH] Update config_server.json --- Socks5-TLS/config_server.json | 110 ++++++++++++++-------------------- 1 file changed, 46 insertions(+), 64 deletions(-) diff --git a/Socks5-TLS/config_server.json b/Socks5-TLS/config_server.json index 4dc7a0e..b5a9227 100644 --- a/Socks5-TLS/config_server.json +++ b/Socks5-TLS/config_server.json @@ -1,75 +1,57 @@ { "log": { - "access": "/var/log/v2ray/access.log", - "error": "/var/log/v2ray/error.log", "loglevel": "warning" }, - "inbound": { - "port": 443, - "protocol": "socks", - "settings": { - "auth": "password", - "accounts": [ - { - "user": "hello", - "pass": "3.1415" - } - ], - "udp": false, - "ip": "127.0.0.1", - "timeout": 0, - "userLevel": 0 - }, - "streamSettings": { - "network": "tcp", - "security": "tls", - "tlsSettings": { - "certificates": [ + "routing": { + "domainStrategy": "AsIs", + "rules": [ + { + "type": "field", + "ip": [ + "geoip:private" + ], + "outboundTag": "block" + } + ] + }, + "inbounds": [ + { + "listen": "0.0.0.0", + "port": 1234, + "protocol": "socks", + "settings": { + "auth": "password", + "accounts": [ { - "certificateFile": "/etc/v2ray/v2ray.crt", - "keyFile": "/etc/v2ray/v2ray.key" + "user": "", + "pass": "" } - ] + ], + "udp": true, + "ip": "127.0.0.1" + }, + "streamSettings": { + "network": "tcp", + "security": "tls", + "tlsSettings": { + "certificates": [ + { + "certificateFile": "/path/to/certificate.crt", + "keyFile": "/path/to/key.key" + } + ] + } } } - }, - "outbound": { - "protocol": "freedom", - "settings": {} - }, - "outboundDetour": [ + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, { "protocol": "blackhole", - "settings": {}, - "tag": "blocked" + "tag": "block" } - ], - "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" - } - ] - } - } -} \ No newline at end of file + ] +}