Just a tip for people running SSL bumping on a domain. Don't forget that you can add squid as a subordinate CA to your enterprise CA, that way you wont get certificate errors or need to install a squid root CA certificate on clients - your domain CA root will suffice.
Generate a request on your squid box (you will need the key later)
openssl genrsa -out subordinateCA.key 1024
openssl req -new -key subordinateCA.key -out subordinateCA.csr
use the CSR on your domain CA registration page (you may need to add the template to available options on the CA)
make sure you use base64 not der encoding. Transfer the .cer to your squid box and edit squid accordingly, the location MUST be accessible to squid. Make sure the .key and .cer are readable by the PROXY user (it might not be the same user as qlproxy!) edit squid.conf as appropriate
http_port 10.254.254.250:8080 ssl-bump generate-host-certificates=on dynamic_cert_mem_cache_size=4MB key=/opt/qlproxy/etc/subordinateCA.key cert=/opt/qlproxy/etc/subordinateCA.cer
same with the storage manager - make sure you generate the required directory and chown it to the same user for the PROXY
/usr/lib/squid3/sslcrtd -c -s /var/spool/squid3_ssldb
chown -R proxy:proxy /var/spool/squid3_ssldb
edit squid.conf accordingly to update the cert cache location
sslcrtd_program /usr/lib/squid3/ssl_crtd -s /var/spool/squid3_ssldb -M 4MB
not forgetting to update the rules for diladele in squid.conf
include "/opt/qlproxy/etc/squid/squid.acl"
Now you can SSL bump and not worry about certificate errors on your domain as squid is a subordinate of your enterprise CA.