So I have a privoxy running (on port 8080) on a box acting as a router. My goal is to route all HTTP & HTTPS traffic through privoxy on there. HTTP works with the following command
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080
However, it doesn't work for port 443.
To get HTTP to work, I had to set privoxy's config for "accept-intercepted-requests" to be 1. Is there a similar option to intercept HTTPS requests?
I know setting the proxy settings on Firefox works, but it would be easier if the proxy is transparent. Thanks.