I have a question: I have several upstream peer proxies configured for Squid. I want to route https-requests to one specific peer. So I made the following configuration: cache_peer xxx.xxx.xxx.xxx parent 8080 0 default no-query cache_peer xxx.xxx.xxx.yyy parent 8080 0 no-query acl HTTPS proto https cache_peer_access xxx.xxx.xxx.yyy allow HTTPS cache_peer_access xxx.xxx.xxx.yyy deny all cache_peer_access xxx.xxx.xxx.xxx deny HTTPS cache_peer_access xxx.xxx.xxx.xxx allow all But this isn't working: https-requests are still sent to the default parent. I assume it's possible to use an acl based on the CONNECT method, but why doesn't the above work as expected? Joost