1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
   | {     "log": {         "loglevel": "warning"     },     "routing": {         "domainStrategy": "IPIfNonMatch",         "rules": [             {                 "type": "field",                 "domain": [                     "geosite:private"                 ],                 "outboundTag": "direct"             },             {                 "type": "field",                 "ip": [                     "geoip:private"                 ],                 "outboundTag": "direct"             }         ]     },     "inbounds": [         {             "listen": "127.0.0.1",             "port": 20808,             "protocol": "socks",             "settings": {                 "udp": true             },             "sniffing": {                 "enabled": true,                 "destOverride": [                     "http",                     "tls"                 ]             }         }     ],     "outbounds": [         {             "protocol": "vless",             "settings": {                 "vnext": [                     {                         "address": "limour.top",                          "port": 8443,                         "users": [                             {                                 "id": "87da6f7b-6cf6-4497-a131-74975c340e6f",                                  "encryption": "none",                                 "flow": "xtls-rprx-vision"                             }                         ]                     }                 ]             },             "streamSettings": {                 "network": "tcp",                 "security": "reality",                 "realitySettings": {                     "show": false,                      "fingerprint": "edge",                      "serverName": "mmbiz.qpic.cn",                      "publicKey": "7TIcih8pfj4b7pzqF16OeXapNHjnZkjgzlI_WJ7tsDo",                      "shortId": "6ba85179e30d4fc2",                      "spiderX": "/mmbiz_png/HO0Z9pUcnJnQiaiazrLwZw0ATUfKWynJcuXGZ9KOosGW2U3ibMMGGzyT33ABf0YMYyJSVhQbLk96N4BibmObbgAD9w/0?wx_fmt=png"                  }             },             "tag": "proxy"         },         {             "protocol": "freedom",             "tag": "direct"         },         {             "protocol": "blackhole",             "tag": "block"         }     ] }
 
  |