Skip to content

Instantly share code, notes, and snippets.

@andre487
Created January 17, 2025 18:07
Show Gist options
  • Save andre487/77f80352dac73ae8ac3ca36070aba7f5 to your computer and use it in GitHub Desktop.
Save andre487/77f80352dac73ae8ac3ca36070aba7f5 to your computer and use it in GitHub Desktop.
OpenWRT sing-box config from TProxy to HTTPS
{
"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