根据v5版本现有文档添加配置

This commit is contained in:
Weltolk
2023-02-15 01:07:06 +08:00
parent 4cc09a4977
commit bf9bcd656b
30 changed files with 1341 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
{
"access": {
"type": "Console",
"level": "Warning"
},
"error": {
"type": "Console",
"level": "Warning"
},
"inbounds": [
{
"port": "10808",
"protocol": "socks",
"settings": {
"udpEnabled": true
}
},
{
"port": "10809",
"protocol": "http"
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"address": "xx.com",
"port": 443,
"uuid": "your UUID"
},
"streamSettings": {
"transport": "h2",
"security": "tls",
"transportSettings": {
"host": [
"xx.com"
],
"path": "/path"
}
}
},
{
"tag": "direct",
"protocol": "freedom",
"settings": {}
},
{
"tag": "blocked",
"protocol": "blackhole",
"settings": {}
}
]
}

View File

@@ -0,0 +1,45 @@
{
"access": {
"type": "Console",
"level": "Warning"
},
"error": {
"type": "Console",
"level": "Warning"
},
"inbounds": [
{
"port": 2001,
"listen": "127.0.0.1",
"protocol": "vless",
"settings": {
"users": [
"UUID1",
"UUID2"
]
},
"streamSettings": {
"security": "none",
"transport": "h2",
"transportSettings": {
"path": "/path",
"host": [
"xx.com"
]
}
}
}
],
"outbounds": [
{
"tag": "direct",
"protocol": "freedom",
"settings": {}
},
{
"tag": "blocked",
"protocol": "blackhole",
"settings": {}
}
]
}