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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
| { "log": { "disabled": false, "level": "info", "timestamp": true }, "inbounds": [ { "type": "vless", "tag": "vless-sb", "listen": "::", "listen_port": 10001, "users": [ { "uuid": "bdc76da4-c07c-4bb1-b368-1321e68eeb39", "flow": "xtls-rprx-vision" } ], "tls": { "enabled": true, "server_name": "apple.com", "reality": { "enabled": true, "handshake": { "server": "apple.com", "server_port": 443 }, "private_key": "", "short_id": ["a123456"] } } }, { "type":"anytls", "tag":"anytls-sb", "listen":"::", "listen_port":10002, "users":[ { "password":"bdc76da4-c07c-4bb1-b368-1321e68eeb39" } ], "padding_scheme":[], "tls":{ "enabled": true, "certificate_path": "/etc/sing-box/cert.pem", "key_path": "/etc/sing-box/private.key" } }, { "type":"shadowsocks", "tag": "SS2022-sb", "listen": "::", "listen_port": 10003, "method": "2022-blake3-aes-256-gcm", "password": "", "multiplex": { "enabled": false } }, { "type": "socks", "tag": "socks-sb", "listen": "::", "listen_port": 10004, "sniff": true, "sniff_override_destination": true, "users": [ { "username": "", "password": "" } ] }, { "type": "hysteria2", "tag": "hy2-sb", "listen": "::", "listen_port": 10005, "users": [ { "password": "bdc76da4-c07c-4bb1-b368-1321e68eeb39" } ], "ignore_client_bandwidth": false, "tls": { "enabled": true, "alpn": [ "h3" ], "certificate_path": "/etc/sing-box/cert.pem", "key_path": "/etc/sing-box/private.key" } }, { "type": "tuic", "tag": "tuic5-sb", "listen": "::", "listen_port": 10006, "users": [ { "uuid": "bdc76da4-c07c-4bb1-b368-1321e68eeb39", "password": "bdc76da4-c07c-4bb1-b368-1321e68eeb39" } ], "congestion_control": "bbr", "tls": { "enabled": true, "alpn": [ "h3" ], "certificate_path": "/etc/sing-box/cert.pem", "key_path": "/etc/sing-box/private.key" } } ], "outbounds": [ { "type": "direct", "tag": "direct", "domain_strategy": "prefer_ipv4" }, { "type": "direct", "tag": "vps-outbound-v4", "domain_strategy": "prefer_ipv4" }, { "type": "direct", "tag": "vps-outbound-v6", "domain_strategy": "prefer_ipv6" }, { "type": "socks", "tag": "socks-proxy-out", "server": "127.0.0.1", "server_port": 1080, "version": "5", "username": "myuser", "password": "mypassword" } ], "route": { "rules": [ { "action": "sniff" }, { "ip_version": 6, "outbound": "vps-outbound-v6" }, { "ip_version": 4, "outbound": "vps-outbound-v4" }, { "outbound": "socks-proxy-out", "network": "udp,tcp" } ] } }
|