| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "log": {
- "loglevel": "warning"
- },
- "routing": {
- "domainStrategy": "IPIfNonMatch",
- "rules": [
- {
- "type": "field",
- "port": "0-65535",
- "outboundTag": "proxy"
- }
- ]
- },
- "inbounds": [
- {
- "listen": "::1",
- "port": "2080",
- "protocol": "socks",
- "settings": {
- "auth": "noauth",
- "udp": true,
- "ip": "::1"
- }
- },
- {
- "listen": "::1",
- "port": "2081",
- "protocol": "http"
- }
- ],
- "outbounds": [
- {
- "tag": "proxy",
- "protocol": "vless",
- "settings": {
- "vnext": [
- {
- "address": "reverse.example", // 换成你的域名或服务器 IP
- "port": 443,
- "users": [
- {
- "id": "", // 填写你的 UUID
- "flow": "xtls-rprx-direct",
- "encryption": "none",
- "level": 0
- }
- ]
- }
- ]
- },
- "streamSettings": {
- "network": "tcp",
- "security": "xtls",
- "xtlsSettings": {
- "serverName": "reverse.example" // 换成你的域名
- }
- }
- },
- {
- "protocol": "freedom",
- "tag": "direct"
- }
- ]
- }
|