ports=flag.String("ports","443","comma-separated list of ports to proxy")
forwards=flag.String("forwards","","comma-separated list of ports to transparently forward, protocol/number/destination. For example, --forwards=tcp/22/github.com,tcp/5432/sql.example.com")
wgPort=flag.Int("wg-listen-port",0,"UDP port to listen on for WireGuard and peer-to-peer traffic; 0 means automatically select")
promoteHTTPS=flag.Bool("promote-https",true,"promote HTTP to HTTPS")
debugPort=flag.Int("debug-port",8080,"Listening port for debug/metrics endpoint")
ports=fs.String("ports","443","comma-separated list of ports to proxy")
forwards=fs.String("forwards","","comma-separated list of ports to transparently forward, protocol/number/destination. For example, --forwards=tcp/22/github.com,tcp/5432/sql.example.com")
wgPort=fs.Int("wg-listen-port",0,"UDP port to listen on for WireGuard and peer-to-peer traffic; 0 means automatically select")
promoteHTTPS=fs.Bool("promote-https",true,"promote HTTP to HTTPS")
debugPort=fs.Int("debug-port",8080,"Listening port for debug/metrics endpoint")