> > 3) Can i use multiple SSL certificates for proxy like i can do in apache? > > How do you do it in Apache? what version of Apache? what version of Squid? > can you change your version of Squid if it is too old? - these are critical > information which you have omitted. > > Amos Hi Amos, i just load SSL certificate in file related to a host that i am publishing. Inside apache i can load multiple SSL certificates, with squid 3.2.7 i can only load one certificate when doing proxying. SSLEngine On SSLCertificateFile /etc/SSL_UC/something.crt SSLCertificateKeyFile /etc/SSL_UC/something.key SSLProxyEngine On ProxyRequests Off ProxyPreserveHost On ProxyVia full Squid example: https_port 443 accel cert=/etc/squid/certs/codimensions/codimensions.crt key=/etc/squid/certs/something/something.key defaultsite=webmail.bla.com vhost https_port 443 accel cert=/etc/squid/certs/codimensions/codimensions.crt key=/etc/squid/certs/something/something.key defaultsite=portal.bla.com vhost I can't load here other certificate with other key correct?