Hello,
I am configuring a transparent squid proxy, but I also intend to use the same box in a non-transparent environment, meaning hard-coding the proxy server IP in the browser settings.
Below is my squid.conf and it's working fine in a transparent squid environment.
Quote:
cache_replacement_policy heap LFUDA
cache_swap_low 90
cache_swap_high 95
maximum_object_size_in_memory 50 KB
cache_dir aufs /var/spool/squid 2000000 16 256
cache_mem 8000 MB
logfile_rotate 365
memory_pools off
maximum_object_size 50 MB
quick_abort_min 0 KB
quick_abort_max 0 KB
log_icp_queries off
client_db off
buffered_logs on
half_closed_clients off
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 localnet src fc00::/7 # RFC 4193 local private network range
acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
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
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost manager
http_access deny manager
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 3128 accel vhost allow-direct
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
|
However, the settings above is not working for HTTPS when the squid proxy IP is hardcoded directly on a browser. I kept getting the error below.
TAG_NONE/405 3440 CONNECT error:method-not-allowed - HIER_NONE/- text/html
It can fix the problem by changing the http_port parameter below, but then, it starts giving error in transparent proxy.
Quote:
#http_port 3128 accel vhost allow-direct
http_port 3128
|
Please advise. THanks.