I'm trying to use squid as a reverse proxy in front of a single website, to decrypt the SSL on the proxy and then to encrypt the connection to the webserver (this is in order to use squid as an ICAP client for a zero trust CDR product).
I can see that this requires two config lines:
https_port 1.2.3.4:443 accel
for the listener
and
cache_peer 1.2.4.8 parent 443
for the webserver.
Following the examples I've found here and elsewhere, I hit various errors from Squid, in particular this one:
FATAL: No valid signing certificate configured for HTTPS_port
A known-working configuration for Squid 4.x would be very helpful!