add http/2 config

This commit is contained in:
kirikira 2018-04-16 17:07:21 +08:00
parent bbff5e06b6
commit d1f24d4a9f
33 changed files with 1064 additions and 780 deletions

111
HTTP2/config_client.json Executable file
View File

@ -0,0 +1,111 @@
{
"outbound": {
"streamSettings": {
"network": "ws",
"kcpSettings": null,
"wsSettings": {
"headers": {
"host": "example.domain"
},
"path": ""
},
"tcpSettings": null,
"tlsSettings": {},
"security": "tls"
},
"tag": "agentout",
"protocol": "vmess",
"mux": {
"enabled": true
},
"settings": {
"vnext": [
{
"users": [
{
"alterId": 100,
"security": "aes-128-gcm",
"id": "0cdf8a45-303d-4fed-9780-29aa7f54175e"
}
],
"port": 443,
"address": "example.domain"
}
]
}
},
"log": {
"access": "",
"loglevel": "info",
"error": ""
},
"outboundDetour": [
{
"tag": "direct",
"protocol": "freedom",
"settings": {
"response": null
}
},
{
"tag": "blockout",
"protocol": "blackhole",
"settings": {
"response": {
"type": "http"
}
}
}
],
"inbound": {
"streamSettings": null,
"settings": {
"ip": "127.0.0.1",
"udp": true,
"clients": null,
"auth": "noauth"
},
"protocol": "socks",
"port": 1080,
"listen": "0.0.0.0"
},
"inboundDetour": null,
"routing": {
"settings": {
"rules": [
{
"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"
],
"domain": null,
"type": "field",
"port": null,
"outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch"
},
"strategy": "rules"
},
"dns": {
"servers": [
"8.8.8.8",
"8.8.4.4",
"localhost"
]
}
}

91
HTTP2/config_server.json Executable file
View File

@ -0,0 +1,91 @@
{
"outbound": {
"streamSettings": null,
"tag": null,
"protocol": "freedom",
"mux": null,
"settings": null
},
"log": {
"access": "/var/log/v2ray/access.log",
"loglevel": "error",
"error": "/var/log/v2ray/error.log"
},
"inboundDetour": null,
"inbound": {
"streamSettings": {
"network": "h2",
"kcpSettings": null,
"httpSettings": {
"host": [
"lax.kirikira.moe"
],
"path": "/test"
},
"tcpSettings": null,
"tlsSettings": {
"certificates": [
{
"keyFile": "/path/to/example.domain.key",
"certificateFile": "/path/to/example.domain/fullchain.cer"
}
]
},
"security": "tls"
},
"listen": null,
"protocol": "vmess",
"port": 443,
"settings": {
"ip": null,
"udp": true,
"clients": [
{
"alterId": 100,
"security": "aes-128-gcm",
"id": "0cdf8a45-303d-4fed-9780-29aa7f54175e"
}
],
"auth": null
}
},
"outboundDetour": [
{
"tag": "blocked",
"protocol": "blackhole",
"settings": null
}
],
"routing": {
"strategy": "rules",
"settings": {
"rules": [
{
"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"
],
"domain": null,
"type": "field",
"port": null,
"outboundTag": "blocked"
}
],
"domainStrategy": null
}
},
"dns": null
}

0
How_To_Choose.jpg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 108 KiB

0
README.md Normal file → Executable file
View File

0
Shadowsocks+mKcp/config_cilent.json Normal file → Executable file
View File

0
Shadowsocks+mKcp/config_server.json Normal file → Executable file
View File

0
TCP+TLS/config_client.json Normal file → Executable file
View File

0
TCP+TLS/config_server.json Normal file → Executable file
View File

73
TCP/config_client.json Normal file → Executable file
View File

@ -14,15 +14,19 @@
"enabled": true "enabled": true
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 1234, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "Your_IP_Address" }
}] ],
"port": 1234,
"address": "Your_IP_Address"
}
]
} }
}, },
"log": { "log": {
@ -30,7 +34,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -62,29 +67,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"

72
TCP/config_server.json Normal file → Executable file
View File

@ -27,45 +27,51 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
} }
}, },
"outboundDetour": [{ "outboundDetour": [
"tag": "blocked", {
"protocol": "blackhole", "tag": "blocked",
"settings": null "protocol": "blackhole",
}], "settings": null
}
],
"routing": { "routing": {
"strategy": "rules", "strategy": "rules",
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
} }
}, },

73
http/config_client.json Normal file → Executable file
View File

@ -57,15 +57,19 @@
"enabled": true "enabled": true
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 1234, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "Your_IP_Address" }
}] ],
"port": 1234,
"address": "Your_IP_Address"
}
]
} }
}, },
"log": { "log": {
@ -73,7 +77,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -105,29 +110,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"

72
http/config_server.json Normal file → Executable file
View File

@ -11,11 +11,13 @@
"loglevel": "info", "loglevel": "info",
"error": "/var/log/v2ray/error.log" "error": "/var/log/v2ray/error.log"
}, },
"outboundDetour": [{ "outboundDetour": [
"tag": "blocked", {
"protocol": "blackhole", "tag": "blocked",
"settings": null "protocol": "blackhole",
}], "settings": null
}
],
"inbound": { "inbound": {
"streamSettings": { "streamSettings": {
"network": "tcp", "network": "tcp",
@ -71,11 +73,13 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
}, },
"protocol": "vmess", "protocol": "vmess",
@ -85,29 +89,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
}, },
"strategy": "rules" "strategy": "rules"

75
mKcp 伪装微信视频流量/config_client.json Normal file → Executable file
View File

@ -3,7 +3,7 @@
"streamSettings": { "streamSettings": {
"network": "kcp", "network": "kcp",
"kcpSettings": { "kcpSettings": {
"uplinkCapacity": 100, "uplinkCapacity": 15,
"downlinkCapacity": 100, "downlinkCapacity": 100,
"readBufferSize": 2, "readBufferSize": 2,
"mtu": 1350, "mtu": 1350,
@ -27,15 +27,19 @@
"enabled": true "enabled": true
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 1234, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "Your_IP_Address" }
}] ],
"port": 1234,
"address": "Your_IP_Address"
}
]
} }
}, },
"log": { "log": {
@ -43,7 +47,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -75,29 +80,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"

74
mKcp 伪装微信视频流量/config_server.json Normal file → Executable file
View File

@ -11,16 +11,18 @@
"loglevel": "info", "loglevel": "info",
"error": "/var/log/v2ray/error.log" "error": "/var/log/v2ray/error.log"
}, },
"outboundDetour": [{ "outboundDetour": [
"tag": "blocked", {
"protocol": "blackhole", "tag": "blocked",
"settings": null "protocol": "blackhole",
}], "settings": null
}
],
"inbound": { "inbound": {
"streamSettings": { "streamSettings": {
"network": "kcp", "network": "kcp",
"kcpSettings": { "kcpSettings": {
"uplinkCapacity": 100, "uplinkCapacity": 15,
"downlinkCapacity": 100, "downlinkCapacity": 100,
"readBufferSize": 2, "readBufferSize": 2,
"mtu": 1350, "mtu": 1350,
@ -41,11 +43,13 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
}, },
"protocol": "vmess", "protocol": "vmess",
@ -55,29 +59,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
}, },
"strategy": "rules" "strategy": "rules"

2
mKcp/config_client.json Normal file → Executable file
View File

@ -3,7 +3,7 @@
"streamSettings": { "streamSettings": {
"network": "kcp", "network": "kcp",
"kcpSettings": { "kcpSettings": {
"uplinkCapacity": 100, "uplinkCapacity": 15,
"downlinkCapacity": 100, "downlinkCapacity": 100,
"readBufferSize": 2, "readBufferSize": 2,
"mtu": 1350, "mtu": 1350,

2
mKcp/config_server.json Normal file → Executable file
View File

@ -20,7 +20,7 @@
"streamSettings": { "streamSettings": {
"network": "kcp", "network": "kcp",
"kcpSettings": { "kcpSettings": {
"uplinkCapacity": 100, "uplinkCapacity": 15,
"downlinkCapacity": 100, "downlinkCapacity": 100,
"readBufferSize": 2, "readBufferSize": 2,
"mtu": 1350, "mtu": 1350,

View File

@ -1,46 +1,44 @@
{ {
"log":{ "log": {
"loglevel":"warning" "loglevel": "warning"
}, },
"inbound":{ "inbound": {
"port":6789, "port": 6789,
"listen":"127.0.0.1", "listen": "127.0.0.1",
"protocol":"socks", "protocol": "socks",
"settings":{ "settings": {
"auth":"noauth", "auth": "noauth",
"udp":false, "udp": false,
"ip":"127.0.0.1" "ip": "127.0.0.1"
} }
}, },
"outbound":{ "outbound": {
"protocol":"socks", "protocol": "socks",
"settings":{ "settings": {
"servers":[ "servers": [
{ {
"address":"you server", "address": "you server",
"port": 443, "port": 443,
"users":[ "users": [
{ {
"user":"hello", "user": "hello",
"pass":"3.1415", "pass": "3.1415",
"level":0 "level": 0
} }
] ]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls"
}
},
"policy": {
"levels": {
"0": {
"uplinkOnly": 0
} }
] }
}, }
"streamSettings": {
"network": "tcp",
"security": "tls"
}
},
"policy":{
"levels":{
"0":{
"uplinkOnly":0
}
}
}
} }

View File

@ -1,79 +1,75 @@
{ {
"log":{ "log": {
"access":"/var/log/v2ray/access.log", "access": "/var/log/v2ray/access.log",
"error":"/var/log/v2ray/error.log", "error": "/var/log/v2ray/error.log",
"loglevel":"warning" "loglevel": "warning"
}, },
"inbound":{ "inbound": {
"port":443, "port": 443,
"protocol":"socks", "protocol": "socks",
"settings":{ "settings": {
"auth":"password", "auth": "password",
"accounts":[ "accounts": [
{ {
"user":"hello", "user": "hello",
"pass":"3.1415" "pass": "3.1415"
}
],
"udp": false,
"ip": "127.0.0.1",
"timeout": 0,
"userLevel": 0
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"certificates": [
{
"certificateFile": "/etc/v2ray/v2ray.crt",
"keyFile": "/etc/v2ray/v2ray.key"
}
]
} }
], }
"udp":false, },
"ip":"127.0.0.1", "outbound": {
"timeout":0, "protocol": "freedom",
"userLevel":0 "settings": {}
}, },
"streamSettings":{ "outboundDetour": [
"network":"tcp", {
"security":"tls", "protocol": "blackhole",
"tlsSettings":{ "settings": {},
"certificates":[ "tag": "blocked"
{ }
"certificateFile":"/etc/v2ray/v2ray.crt", ],
"keyFile":"/etc/v2ray/v2ray.key" "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"
}
] ]
} }
} }
},
"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"
}
]
}
}
} }

View File

@ -1,45 +1,53 @@
{ {
"log": { "log": {
"error": "F:\\Program Files\\v2ray-v2.40-windows-64\\error.log", "error": "F:\\Program Files\\v2ray-v2.40-windows-64\\error.log",
"loglevel": "warning" "loglevel": "warning"
}, },
"inbound": { "inbound": {
"port": 1082, "port": 1082,
"listen": "127.0.0.1", "listen": "127.0.0.1",
"protocol": "socks", "protocol": "socks",
"settings": { "settings": {
"auth": "noauth", "auth": "noauth",
"udp": true "udp": true
} }
}, },
"outbound": { "outbound": {
"protocol": "vmess", "protocol": "vmess",
"settings": { "settings": {
"vnext": [{ "vnext": [
{
"address": "0.0.0.0", "address": "0.0.0.0",
"port": 1234, "port": 1234,
"users": [{ "users": [
"id": "a90597c1-bab3-4217-ad6f-0838675c8633", {
"alterId": 10 "id": "a90597c1-bab3-4217-ad6f-0838675c8633",
}, { "alterId": 10
"id": "8856ea72-a67a-4651-98f0-ebb3bf4f07b1", },
"level": 1, {
"security": "aes-128-gcm", "id": "8856ea72-a67a-4651-98f0-ebb3bf4f07b1",
"alterId": 12 "level": 1,
}] "security": "aes-128-gcm",
}] "alterId": 12
} }
}, ]
"outboundDetour": [{ }
]
}
},
"outboundDetour": [
{
"protocol": "freedom", "protocol": "freedom",
"tag": "direct", "tag": "direct",
"settings": {} "settings": {}
}], }
"routing": { ],
"strategy": "rules", "routing": {
"settings": { "strategy": "rules",
"domainStrategy": "IPOnDemand", "settings": {
"rules": [{ "domainStrategy": "IPOnDemand",
"rules": [
{
"type": "field", "type": "field",
"ip": [ "ip": [
"0.0.0.0/8", "0.0.0.0/8",
@ -59,7 +67,8 @@
"fe80::/10" "fe80::/10"
], ],
"outboundTag": "direct" "outboundTag": "direct"
}] }
} ]
} }
} }
}

View File

@ -1,61 +1,64 @@
{ {
"log" : { "log": {
"access": "/var/log/v2ray/access.log", "access": "/var/log/v2ray/access.log",
"error": "/var/log/v2ray/error.log", "error": "/var/log/v2ray/error.log",
"loglevel": "warning" "loglevel": "warning"
}, },
"inbound": { "inbound": {
"port": 1234, "port": 1234,
"protocol": "vmess", "protocol": "vmess",
"settings": { "settings": {
"clients": [{ "clients": [
"id": "a90597c1-bab3-4217-ad6f-0838675c8633", {
"alterId": 10 "id": "a90597c1-bab3-4217-ad6f-0838675c8633",
}, { "alterId": 10
"id": "8856ea72-a67a-4651-98f0-ebb3bf4f07b1", },
"level": 1, {
"security": "aes-128-gcm", "id": "8856ea72-a67a-4651-98f0-ebb3bf4f07b1",
"alterId": 12 "level": 1,
}] "security": "aes-128-gcm",
} "alterId": 12
}, }
"outbound": { ]
"protocol": "freedom", }
"settings": {} },
}, "outbound": {
"outboundDetour": [ "protocol": "freedom",
{ "settings": {}
"protocol": "blackhole", },
"settings": {}, "outboundDetour": [
"tag": "blocked" {
} "protocol": "blackhole",
], "settings": {},
"routing": { "tag": "blocked"
"strategy": "rules", }
"settings": { ],
"rules": [ "routing": {
{ "strategy": "rules",
"type": "field", "settings": {
"ip": [ "rules": [
"0.0.0.0/8", {
"10.0.0.0/8", "type": "field",
"100.64.0.0/10", "ip": [
"127.0.0.0/8", "0.0.0.0/8",
"169.254.0.0/16", "10.0.0.0/8",
"172.16.0.0/12", "100.64.0.0/10",
"192.0.0.0/24", "127.0.0.0/8",
"192.0.2.0/24", "169.254.0.0/16",
"192.168.0.0/16", "172.16.0.0/12",
"198.18.0.0/15", "192.0.0.0/24",
"198.51.100.0/24", "192.0.2.0/24",
"203.0.113.0/24", "192.168.0.0/16",
"::1/128", "198.18.0.0/15",
"fc00::/7", "198.51.100.0/24",
"fe80::/10" "203.0.113.0/24",
], "::1/128",
"outboundTag": "blocked" "fc00::/7",
} "fe80::/10"
] ],
} "outboundTag": "blocked"
}
]
} }
} }
}

0
websocket+Caddy+TLS(use header)/Caddyfile Normal file → Executable file
View File

View File

@ -20,15 +20,19 @@
"concurrency": 8 "concurrency": 8
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 443, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "example.domain" }
}] ],
"port": 443,
"address": "example.domain"
}
]
} }
}, },
"log": { "log": {
@ -36,7 +40,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -68,29 +73,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"

63
websocket+Caddy+TLS(use header)/config_server.json Normal file → Executable file
View File

@ -11,7 +11,8 @@
"loglevel": "info", "loglevel": "info",
"error": "/var/log/v2ray/error.log" "error": "/var/log/v2ray/error.log"
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": null "settings": null
@ -39,11 +40,13 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
}, },
"protocol": "vmess", "protocol": "vmess",
@ -53,29 +56,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
}, },
"strategy": "rules" "strategy": "rules"

0
websocket+Caddy+TLS(use path)/Caddyfile Normal file → Executable file
View File

View File

@ -17,15 +17,19 @@
"concurrency": 8 "concurrency": 8
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 443, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "example.domain" }
}] ],
"port": 443,
"address": "example.domain"
}
]
} }
}, },
"log": { "log": {
@ -33,7 +37,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -65,29 +70,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"

63
websocket+Caddy+TLS(use path)/config_server.json Normal file → Executable file
View File

@ -11,7 +11,8 @@
"loglevel": "info", "loglevel": "info",
"error": "/var/log/v2ray/error.log" "error": "/var/log/v2ray/error.log"
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": null "settings": null
@ -36,11 +37,13 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
}, },
"protocol": "vmess", "protocol": "vmess",
@ -50,29 +53,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
}, },
"strategy": "rules" "strategy": "rules"

0
websocket+Nginx+TLS/Nginx.config Normal file → Executable file
View File

4
websocket+Nginx+TLS/config_client.json Normal file → Executable file
View File

@ -1,7 +1,7 @@
{ {
"outbound": { "outbound": {
"protocol": "freedom", "protocol": "freedom",
"settings": { }, "settings": {},
"tag": "direct" "tag": "direct"
}, },
"inboundDetour": [ "inboundDetour": [
@ -55,7 +55,7 @@
}, },
{ {
"protocol": "blackhole", "protocol": "blackhole",
"settings": { }, "settings": {},
"tag": "block" "tag": "block"
} }
], ],

0
websocket+Nginx+TLS/config_server.json Normal file → Executable file
View File

0
websocket+TLS/config_client.json Normal file → Executable file
View File

176
websocket+TLS/config_server.json Normal file → Executable file
View File

@ -1,91 +1,91 @@
{ {
"outbound": { "outbound": {
"streamSettings": null, "streamSettings": null,
"tag": null, "tag": null,
"protocol": "freedom", "protocol": "freedom",
"mux": null, "mux": null,
"settings": null "settings": null
},
"log": {
"access": "/var/log/v2ray/access.log",
"loglevel": "error",
"error": "/var/log/v2ray/error.log"
},
"inboundDetour": null,
"inbound": {
"streamSettings": {
"network": "ws",
"kcpSettings": null,
"wsSettings": {
"headers": {
"host": "example.domain"
}, },
"path": "" "log": {
}, "access": "/var/log/v2ray/access.log",
"tcpSettings": null, "loglevel": "error",
"tlsSettings": { "error": "/var/log/v2ray/error.log"
"certificates": [ },
{ "inboundDetour": null,
"keyFile": "/path/to/example.domain.key", "inbound": {
"certificateFile": "/path/to/example.domain/fullchain.cer" "streamSettings": {
} "network": "ws",
] "kcpSettings": null,
}, "wsSettings": {
"security": "tls" "headers": {
}, "host": "example.domain"
"listen": null, },
"protocol": "vmess", "path": ""
"port": 443, },
"settings": { "tcpSettings": null,
"ip": null, "tlsSettings": {
"udp": true, "certificates": [
"clients": [ {
{ "keyFile": "/path/to/example.domain.key",
"alterId": 100, "certificateFile": "/path/to/example.domain/fullchain.cer"
"security": "aes-128-gcm", }
"id": "0cdf8a45-303d-4fed-9780-29aa7f54175e" ]
} },
], "security": "tls"
"auth": null },
} "listen": null,
}, "protocol": "vmess",
"outboundDetour": [ "port": 443,
{ "settings": {
"tag": "blocked", "ip": null,
"protocol": "blackhole", "udp": true,
"settings": null "clients": [
} {
], "alterId": 100,
"routing": { "security": "aes-128-gcm",
"strategy": "rules", "id": "0cdf8a45-303d-4fed-9780-29aa7f54175e"
"settings": { }
"rules": [ ],
{ "auth": null
"ip": [ }
"0.0.0.0/8", },
"10.0.0.0/8", "outboundDetour": [
"100.64.0.0/10", {
"127.0.0.0/8", "tag": "blocked",
"169.254.0.0/16", "protocol": "blackhole",
"172.16.0.0/12", "settings": null
"192.0.0.0/24", }
"192.0.2.0/24", ],
"192.168.0.0/16", "routing": {
"198.18.0.0/15", "strategy": "rules",
"198.51.100.0/24", "settings": {
"203.0.113.0/24", "rules": [
"::1/128", {
"fc00::/7", "ip": [
"fe80::/10" "0.0.0.0/8",
], "10.0.0.0/8",
"domain": null, "100.64.0.0/10",
"type": "field", "127.0.0.0/8",
"port": null, "169.254.0.0/16",
"outboundTag": "blocked" "172.16.0.0/12",
} "192.0.0.0/24",
], "192.0.2.0/24",
"domainStrategy": null "192.168.0.0/16",
} "198.18.0.0/15",
}, "198.51.100.0/24",
"dns": null "203.0.113.0/24",
"::1/128",
"fc00::/7",
"fe80::/10"
],
"domain": null,
"type": "field",
"port": null,
"outboundTag": "blocked"
}
],
"domainStrategy": null
}
},
"dns": null
} }

73
websocket/config_client.json Normal file → Executable file
View File

@ -19,15 +19,19 @@
"enabled": true "enabled": true
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 1234, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "Your_IP_Address" }
}] ],
"port": 1234,
"address": "Your_IP_Address"
}
]
} }
}, },
"log": { "log": {
@ -35,7 +39,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -67,29 +72,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"

72
websocket/config_server.json Normal file → Executable file
View File

@ -32,45 +32,51 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
} }
}, },
"outboundDetour": [{ "outboundDetour": [
"tag": "blocked", {
"protocol": "blackhole", "tag": "blocked",
"settings": null "protocol": "blackhole",
}], "settings": null
}
],
"routing": { "routing": {
"strategy": "rules", "strategy": "rules",
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
} }
}, },