Knowledge Base

Preserving for the future: Shell scripts, AoC, and more

Squid add port that passes all traffic through

If you run a squid proxy and want to have an additional port, where it does zero interception, use these configuration entries.

http_port 3180 name=port_3180 # no ssl interception at all on this port
# allow port 3180 to pass ssl through
acl port_3180_acl myportname port_3180
always_direct allow port_3180_acl
ssl_bump splice port_3180_acl

Be sure the bottom three lines here are used before any other ssl_bump or always_direct directives.

Comments