Squid Proxy - https funcionando, mas sites não trabalhando

3

Eu tenho um arquivo de configuração do proxy do Squid em que venho trabalhando por alguns dias. E estou preso nesta última edição. Eu finalmente consegui URLs https funcionarem através do proxy, mas os URLs http não funcionam. O que estou fazendo de errado? O que estou perdendo?

acl manager proto cache_object
acl localhost src 127.0.0.1/32 ::1
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1

acl SSL_ports port 443
acl Safe_ports port 80                  

acl CONNECT method CONNECT
acl destinations dstdomain .somesite.com .someothersite.com
acl all_others dst all

acl myclients src 75.162.95.96 98.231.47.27

http_access allow manager localhost
http_access deny manager

http_access allow CONNECT SSL_ports
http_access allow CONNECT Safe_ports

http_access deny to_localhost
http_access allow destinations

http_access allow localnet
http_access allow localhost
http_access allow myclients
# And finally deny all other access to this proxy
http_access deny all_others
# Squid normally listens to port 3128
http_port 80
http_port 25000
# We recommend you to use at least the following line.
hierarchy_stoplist cgi-bin ?
#Uncomment and adjust the following to add a disk cache directory.
#cache_dir ufs /var/spool/squid 100 16 256
# Leave coredumps in the first cache dir
coredump_dir /var/spool/squid
# Add any of your own refresh_pattern entries above these.
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
    
por Tyndall 27.02.2012 / 18:39

0 respostas

Tags