From 2a3cdb20b326ba03a9d424c47634145ff6f1f865 Mon Sep 17 00:00:00 2001 From: q158073378252010 Date: Sat, 9 Dec 2017 13:52:27 +0800 Subject: [PATCH] Create config_server.json --- Nginx-TLS-V2Ray/config_server.json | 77 ++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 Nginx-TLS-V2Ray/config_server.json diff --git a/Nginx-TLS-V2Ray/config_server.json b/Nginx-TLS-V2Ray/config_server.json new file mode 100644 index 0000000..c725de2 --- /dev/null +++ b/Nginx-TLS-V2Ray/config_server.json @@ -0,0 +1,77 @@ +{ + "log": { + "access": "/var/log/v2ray/access.log", + "error": "/var/log/v2ray/error.log", + //可能取值 "debug" "info" "warning" "error" 其中"debug"记录的数据最多,"error"记录的最少 "none"表示不记录任何内容 默认值为"warning" + "loglevel": "debug" + }, + "inbound": { + //默认值为"0.0.0.0" + "listen": "127.0.0.1", + "port": 10086, + "protocol": "vmess", + "settings": { + "clients": [ + { + "id": "7f43b638-dc47-11e7-9296-cec278b6b50a", + "level": 0, + "alterId": 64 + } + ] + }, + "streamSettings": { + "network": "ws", + "security": "auto", + "wsSettings": { + "path": "/PATH/", + "connectionReuse": true, + "headers": { + "Host": "domain.Name" + } + } + }, + "mux": { + "enabled": true, + "concurrency": 64 + } + }, + "outbound": { + "protocol": "freedom", + "settings": { } + }, + "outboundDetour": [ + { + "protocol": "blackhole", + "settings": { }, + "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" + } + ] + } + } +}