• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

HTTPS Problem

seppmaier

Newbie
Hallo zusammen,

ich habe ein SQUID Proxy laufen. Dieser Proxy ist einen anderen FirmenProxy untergeordnet.

Bei meinen Clients komme ich mit eingetragenen FirmenProxy so ziemlich überall hin.
Mit meinem SQUID Proxy komme ich auf http Seiten, jedoch nicht auf https Seiten.
Könnt ihr mir bitte schnell helfen?
Hier meine Konfig:



http_port 3128
#
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
#
acl allowed_hosts src 12.210.50.0/24
acl allowed_vpn src 10.0.0.0/255.255.255.0
#
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 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
#
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
#
#
http_access allow allowed_hosts
http_access allow allowed_vpn
#
#
http_access deny manager all
http_access allow allowed_hosts
http_access deny all
#
cache_peer FirmenProxy parent 80 3128 default no-query
 
Oben