Created
January 17, 2025 18:07
-
-
Save andre487/77f80352dac73ae8ac3ca36070aba7f5 to your computer and use it in GitHub Desktop.
OpenWRT sing-box config from TProxy to HTTPS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"log": { | |
"level": "trace" | |
}, | |
"dns": { | |
"servers": [ | |
{ | |
"address": "tls://8.8.8.8" | |
} | |
] | |
}, | |
"inbounds": [ | |
{ | |
"type": "tproxy", | |
"listen": "0.0.0.0", | |
"listen_port": 10000, | |
"sniff": false | |
} | |
], | |
"outbounds": [ | |
{ | |
"type": "http", | |
"tag": "http-out", | |
"server": "<HTTPS Proxy IP>", | |
"server_port": 443, | |
"username": "<user>", | |
"password": "<password>", | |
"path": "", | |
"headers": {}, | |
"tls": { | |
"enabled": true, | |
"server_name": "<HTTPS Proxy Domain>" | |
} | |
} | |
], | |
"route": { | |
"auto_detect_interface": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment