I'm trying to set up squid as a load-balancing reverse-proxy, and I'm having a bit of trouble with the SSL. One of the site's applications checks to see if a site is loaded over SSL, and behaves differently if that is the case, so I need SSL connections to be proxied over SSL, and non-SSL connections to be proxied without it.
Right now, the squid server accepts connections over HTTP and HTTPS, but it only makes connections over HTTP to the upstream servers.
The interesting part of my squid configuration looks like this:
http_port 80 vhost vport
https_port 443 vhost vport cert=/etc/cert.pem key=/etc/cert.key
cache_peer 10.0.0.10 parent 80 0 originserver round-robin
cache_peer 10.0.0.11 parent 80 0 originserver round-robin
Is there a simple way to tell it to proxy the SSL connections upstream over SSL, while leaving the others alone?
UPDATE (actually tried this from my squid...):
ORIGINAL ANSWER BELOW HERE:
you want something like