Debugging I've found this in cache.log:
````
2016/04/16 20:00:21.924 kid1| client_side.cc(864) swanSong: local=
172.217.28.225:443 remote=
192.168.80.250:55068 flags=33
2016/04/16 20:00:21.925 kid1|
Checklist.cc(62) preCheck: 0x7eff3754 checking fast ACLs
2016/04/16 20:00:21.925 kid1|
Acl.cc(157) matches: checking access_log daemon:/var/log/squid3/access.log
2016/04/16 20:00:21.925 kid1|
Acl.cc(157) matches: checking (access_log daemon:/var/log/squid3/access.log line)
2016/04/16 20:00:21.925 kid1|
Acl.cc(177) matches: checked: (access_log daemon:/var/log/squid3/access.log line) = 1
2016/04/16 20:00:21.926 kid1|
Acl.cc(177) matches: checked: access_log daemon:/var/log/squid3/access.log = 1
2016/04/16 20:00:21.926 kid1|
Checklist.cc(55) markFinished: 0x7eff3754 answer ALLOWED for match
````
````
acl localnet src
192.168.0.0/16 # RFC1918 possible internal network
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
acl tvsamsung src 192.168.80.160
acl sarmiento src 192.168.80.248
acl netbook src 192.168.80.245
acl dompermitidos dstdomain "/etc/squid3/rules/whitelistdom"
acl streaming dstdomain "/etc/squid3/rules/streaming"
acl test dstdomain .
debian.orgacl streamingips dst "/etc/squid3/rules/streamingips"
acl sergiocel src 192.168.80.249
acl tiempojuanse time SMTWHFA 10:00-13:00
acl tiempojuanse time SMTWHFA 16:00-22:00
acl yt dstdomain .
youtube.comacl facebook dstdomain .
facebook.comhttp_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost manager
http_access deny manager
always_direct allow all
ssl_bump none all
sslproxy_cert_error allow all
sslproxy_flags DONT_VERIFY_PEER
http_access allow tvsamsung
http_access deny yt
http_access allow facebook
http_access deny streaming
http_access deny streamingips
http_access allow dompermitidos
http_access allow sarmiento
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 3128
http_port 3127 intercept
https_port 8080 intercept ssl-bump generate-host-certificates=on dynamic_cert_mem_cache_size=4MB cert=/home/proxy/ssl_cert/example.com.cert key=/home/proxy/ssl_cert/example.com.private
sslcrtd_program /usr/lib/squid3/ssl_crtd -s /var/spool/squid3_ssldb -M 4MB
access_log daemon:/var/log/squid3/access.log combined
coredump_dir /var/spool/squid3
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
refresh_pattern . 0 20% 4320
````