Results 1 to 1 of 1
my new sitiation is
ssl1 virtual ip 192.16.0.1 domain1
ssl2 virtual ip 192.16.0.2 domain2
ssl3 virtual ip 192.16.0.3 domain3
ssl4 virtual ip 192.16.0.4 domain4
ssl5 virtual ip 192.16.0.5 domain5
etc..
...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-03-2010 #1Just Joined!
- Join Date
- Feb 2002
- Posts
- 5
redirecting ssl requests with squid?
my new sitiation is
ssl1 virtual ip 192.16.0.1 domain1
ssl2 virtual ip 192.16.0.2 domain2
ssl3 virtual ip 192.16.0.3 domain3
ssl4 virtual ip 192.16.0.4 domain4
ssl5 virtual ip 192.16.0.5 domain5
etc..
how can i tell which virtual ip to forward to based on domain or is such possible?
my squid.conf
Code:http_port 80 vhost 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 cache_peer 192.168.0.20 parent 80 0 no-query default no-digest originserver name=www1 cache_peer 192.168.0.20 parent 80 0 no-query default no-digest originserver name=www2 cache_peer 192.168.0.20 parent 80 0 no-query default no-digest originserver name=www3 cache_peer 192.168.0.20 parent 80 0 no-query default no-digest originserver name=www4 cache_peer 192.168.0.20 parent 80 0 no-query default no-digest originserver name=www5 cache_peer 192.168.0.20 parent 80 0 no-query default no-digest originserver name=www6 cache_peer 192.168.0.20 parent 80 0 no-query default no-digest originserver name=www7 cache_peer 192.168.0.20 parent 80 0 no-query default no-digest originserver name=www8 cache_peer 192.168.0.20 parent 80 0 no-query default no-digest originserver name=www9 cache_peer_domain www1 .domain1.org cache_peer_domain www2 .domain2.com cache_peer_domain www3 .domain3.com cache_peer_domain www4 .domain4.com cache_peer_domain www5 .domain5.com cache_peer_domain www6 .domain6.com cache_peer_domain www7 .domain7.com cache_peer_domain www8 .domain8.com cache_peer_domain www9 .domain9.com acl all src all acl manager proto cache_object acl localhost src 127.0.0.1/32 acl to_localhost dst 127.0.0.0/8 acl localnet src 10.0.0.0/8 # RFC1918 possible internal network acl localnet src 172.16.0.0/12 # RFC1918 possible internal network acl localnet src 192.168.0.0/16 # RFC1918 possible internal network acl SSL_ports port 443 # https acl SSL_ports port 444 # https acl SSL_ports port 445 # https acl SSL_ports port 446 # https acl SSL_ports port 447 # https acl SSL_ports port 448 # https acl SSL_ports port 449 # https #acl SSL_ports port 563 # snews #acl SSL_ports port 873 # rsync acl Safe_ports port 80 # http acl Safe_ports port 21 # ftp acl Safe_ports port 443 # https acl Safe_ports port 444 # https acl Safe_ports port 445 # https acl Safe_ports port 446 # https acl Safe_ports port 447 # https acl Safe_ports port 448 # https acl Safe_ports port 449 # 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 Safe_ports port 631 # cups #acl Safe_ports port 873 # rsync #acl Safe_ports port 901 # SWAT acl purge method PURGE acl CONNECT method CONNECT icp_access allow localnet icp_access deny all hierarchy_stoplist cgi-bin ? access_log /var/log/squid/access.log squid acl apache rep_header Server ^Apache acl 192.168.0.20 dstdomain .domain1.org acl 192.168.0.20 dstdomain .domain2.com acl 192.168.0.20 dstdomain .domain3.com acl 192.168.0.20 dstdomain .domain4.com acl 192.168.0.20 dstdomain .domain5.com acl 192.168.0.20 dstdomain .domain6.com acl 192.168.0.20 dstdomain .domain7.com acl 192.168.0.20 dstdomain .domain8.com acl 192.168.0.20 dstdomain .domain9.com http_access allow 192.168.0.20 http_access allow manager localhost http_access allow manager http_access allow purge localhost http_access deny purge http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access allow localhost http_access deny all broken_vary_encoding allow apache hosts_file /etc/hosts coredump_dir /var/spool/squid cache_effective_user user cache_effective_group user


Reply With Quote
