|
| 1 | +auth_param basic program /usr/lib/squid/basic_ncsa_auth /etc/squid/htpasswd |
| 2 | +auth_param basic realm Squid Proxy Cache Server |
| 3 | + |
| 4 | +acl authenticated proxy_auth REQUIRED |
| 5 | +acl authenticated_ips src all |
| 6 | + |
| 7 | +# acl localnet src 0.0.0.1-0.255.255.255 # RFC 1122 "this" network (LAN) |
| 8 | +# acl localnet src 10.0.0.0/8 # RFC 1918 local private network (LAN) |
| 9 | +# acl localnet src 100.64.0.0/10 # RFC 6598 shared address space (CGN) |
| 10 | +# acl localnet src 169.254.0.0/16 # RFC 3927 link-local (directly plugged) machines |
| 11 | +# acl localnet src 172.16.0.0/12 # RFC 1918 local private network (LAN) |
| 12 | +# acl localnet src 192.168.0.0/16 # RFC 1918 local private network (LAN) |
| 13 | +# acl localnet src fc00::/7 # RFC 4193 local private network range |
| 14 | +# acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines |
| 15 | +acl SSL_ports port 443 |
| 16 | +acl Safe_ports port 80 # http |
| 17 | +acl Safe_ports port 21 # ftp |
| 18 | +acl Safe_ports port 443 # https |
| 19 | +acl Safe_ports port 70 # gopher |
| 20 | +acl Safe_ports port 210 # wais |
| 21 | +acl Safe_ports port 1025-65535 # unregistered ports |
| 22 | +acl Safe_ports port 280 # http-mgmt |
| 23 | +acl Safe_ports port 488 # gss-http |
| 24 | +acl Safe_ports port 591 # filemaker |
| 25 | +acl Safe_ports port 777 # multiling http |
| 26 | +acl CONNECT method CONNECT |
| 27 | +http_access deny !Safe_ports |
| 28 | +http_access deny CONNECT !SSL_ports |
| 29 | +http_access allow localhost manager |
| 30 | +http_access deny manager |
| 31 | +http_access allow localhost |
| 32 | +# http_access allow localnet |
| 33 | +http_access allow authenticated authenticated_ips |
| 34 | +http_access deny all |
| 35 | +http_port 3128 |
| 36 | +coredump_dir /var/spool/squid |
| 37 | +refresh_pattern ^ftp: 1440 20% 10080 |
| 38 | +refresh_pattern ^gopher: 1440 0% 1440 |
| 39 | +refresh_pattern -i (/cgi-bin/|\?) 0 0% 0 |
| 40 | +refresh_pattern \/(Packages|Sources)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims |
| 41 | +refresh_pattern \/Release(|\.gpg)$ 0 0% 0 refresh-ims |
| 42 | +refresh_pattern \/InRelease$ 0 0% 0 refresh-ims |
| 43 | +refresh_pattern \/(Translation-.*)(|\.bz2|\.gz|\.xz)$ 0 0% 0 refresh-ims |
| 44 | +refresh_pattern . 0 20% 4320 |
| 45 | +logfile_rotate 0 |
0 commit comments