Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I configure ssl_proxy now?

configure
0
Posted

How do I configure ssl_proxy now?

0

By default, Squid connects directly to origin servers for SSL requests.

0

By default, Squid connects directly to origin servers for SSL requests. But if you must force SSL requests through a parent, first tell Squid it can not go direct for SSL: acl SSL method CONNECT never_direct allow SSL With this in place, Squid should pick one of your parents to use for SSL requests. If you want it to pick a particular parent, you must use the cache_peer_access configuration: cache_peer parent1 parent 3128 3130 cache_peer parent2 parent 3128 3130 cache_peer_access parent2 allow !SSL The above lines tell Squid to NOT use parent2 for SSL, so it should always use parent1.

0

By default, Squid connects directly to origin servers for SSL requests. But if you must force SSL requests through a parent, first tell Squid it can not go direct for SSL: acl SSL method CONNECT never_direct allow SSL With this in place, Squid should pick one of your parents to use for SSL requests. If you want it to pick a particular parent, you must use the cache_host_acl configuration: cache_peer parent1 parent 3128 3130 cache_peer parent2 parent 3128 3130 cache_host_acl parent2 !SSL The above lines tell Squid to NOT use parent2 for SSL, so it should always use parent1.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123