| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "log": {
- "loglevel": "warning"
- },
- "inbounds": [
- {
- "listen": "127.0.0.1",
- "port": 1234 ,
- "protocol": "vless",
- "settings": {
- "clients": [
- {
- "id": "" // 填写你的 UUID
- }
- ],
- "decryption": "none"
- },
- "streamSettings": {
- "network": "ws",
- "wsSettings": {
- "path": "/Path2WS" // 填写你的 path
- }
- },
- "sniffing": {
- "enabled": true,
- "destOverride": [
- "http",
- "tls"
- ]
- }
- }
- ],
- "outbounds": [
- {
- "tag": "direct",
- "protocol": "freedom",
- "settings": {}
- },
- {
- "tag": "blocked",
- "protocol": "blackhole",
- "settings": {}
- }
- ],
- "routing": {
- "domainStrategy": "IPIfNonMatch",
- "rules": [
- {
- "type": "field",
- "ip": [
- "geoip:cn",
- "geoip:private"
- ],
- "outboundTag": "blocked"
- }
- ]
- }
- }
|