squid: Enable dynamic SSL certificate generation
authorWong Hoi Sing Edison <hswong3i@pantarei-design.com>
Sun, 25 Apr 2021 02:38:14 +0000 (10:38 +0800)
committerWong Hoi Sing Edison <hswong3i@pantarei-design.com>
Sun, 25 Apr 2021 03:03:54 +0000 (11:03 +0800)
Maintainer: @neheb / @BKPepe / @zhanhb
Compile tested: ipq806x, generic, netgear_r7800, master
Run tested: ipq806x, generic, netgear_r7800, openwrt-19.07

Description:

Squid now only support HTTPS proxy in TCP tunnel mode (e.g. `ssl_bump splice all`):

    https_port 3128 ssl-bump tls-cert=/etc/squid/squid.pem generate-host-certificates=on
    ssl_bump splice all

In order to operate in SSL Bump mode, we need to compile with `--enable-ssl-crtd` for following configuration:

    https_port 3128 ssl-bump tls-cert=/etc/squid/squid.pem generate-host-certificates=on
    sslcrtd_program /usr/lib/squid/security_file_certgen -s /car/cache/squid/ssl_db -M 4MB
    ssl_bump stare all
    ssl_bump bump all

This PR switch the `SQUID_enable-ssl-crtd` into `default y`, therefore default enable SSL Bump mode.

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
net/squid/Config.in

index bcc072f18ea2ddf71864e5b5bf67563db8c699f2..eeeb856aba1f28e873657e4f711b8de080e572ba 100644 (file)
@@ -25,7 +25,7 @@ if PACKAGE_squid
        config SQUID_enable-ssl-crtd
                bool "Enable dynamic SSL certificate generation "
                depends on !SQUID_use-gnutls
-               default n
+               default y
 
        config SQUID_auth-basic
                bool "Enable the Basic authentication scheme"