Create config.json
Browse files- config.json +32 -0
config.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"log": {
|
| 3 |
+
"loglevel": "warning"
|
| 4 |
+
},
|
| 5 |
+
"inbounds": [
|
| 6 |
+
{
|
| 7 |
+
"port": PORT,
|
| 8 |
+
"listen": "0.0.0.0",
|
| 9 |
+
"protocol": "vless",
|
| 10 |
+
"settings": {
|
| 11 |
+
"clients": [
|
| 12 |
+
{
|
| 13 |
+
"id": "UUID",
|
| 14 |
+
"level": 0
|
| 15 |
+
}
|
| 16 |
+
],
|
| 17 |
+
"decryption": "none"
|
| 18 |
+
},
|
| 19 |
+
"streamSettings": {
|
| 20 |
+
"network": "ws",
|
| 21 |
+
"wsSettings": {
|
| 22 |
+
"path": "/vless"
|
| 23 |
+
}
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
],
|
| 27 |
+
"outbounds": [
|
| 28 |
+
{
|
| 29 |
+
"protocol": "freedom"
|
| 30 |
+
}
|
| 31 |
+
]
|
| 32 |
+
}
|