Ik heb een probleempje met een bepaalde https site. Als ik de proxy (squid) op mijn pc aanheb. Krijg ik vaak page cannot be displayed.
Als ik de proxy uitzet in mijn browser. Dan heb ik nergens last van.
Is het mogelijk om squid zich niet te laten bemoeien met https verbindingen
Hieronder heb ik mij squid conf
# Port to listen on
http_port 8080
acl all src 0.0.0.0/0.0.0.0
# Our ACLs
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl to_localhost dst 127.0.0.0/8
acl SSL_ports port 443 563
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl CONNECT method CONNECT
# Allow managing just from localhost
http_access allow manager localhost
http_access deny manager
# Deny access to sites that are on unsafe ports
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
# Deny everything else
http_access deny all
# Don't block anything when it goes back to the client
http_reply_access allow all
Heeft iemand een idee?
edit= squid.conf
Als ik de proxy uitzet in mijn browser. Dan heb ik nergens last van.
Is het mogelijk om squid zich niet te laten bemoeien met https verbindingen
Hieronder heb ik mij squid conf
# Port to listen on
http_port 8080
acl all src 0.0.0.0/0.0.0.0
# Our ACLs
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl to_localhost dst 127.0.0.0/8
acl SSL_ports port 443 563
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl CONNECT method CONNECT
# Allow managing just from localhost
http_access allow manager localhost
http_access deny manager
# Deny access to sites that are on unsafe ports
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
# Deny everything else
http_access deny all
# Don't block anything when it goes back to the client
http_reply_access allow all
Heeft iemand een idee?
edit= squid.conf
[ Voor 15% gewijzigd door Sjod op 23-02-2006 21:36 ]