|
| 1 | + |
| 2 | +acl localhost src 127.0.0.1/32 |
| 3 | +acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 |
| 4 | +acl localnet src 10.0.0.0/8 # RFC1918 possible internal network |
| 5 | +acl localnet src 172.16.0.0/12 # RFC1918 possible internal network |
| 6 | +acl localnet src 192.168.0.0/16 # RFC1918 possible internal network |
| 7 | +acl SSL_ports port 443 |
| 8 | +acl Safe_ports port 80 # http |
| 9 | +acl Safe_ports port 21 # ftp |
| 10 | +acl Safe_ports port 443 # https |
| 11 | +acl Safe_ports port 70 # gopher |
| 12 | +acl Safe_ports port 210 # wais |
| 13 | +acl Safe_ports port 1025-65535 # unregistered ports |
| 14 | +acl Safe_ports port 280 # http-mgmt |
| 15 | +acl Safe_ports port 488 # gss-http |
| 16 | +acl Safe_ports port 591 # filemaker |
| 17 | +acl Safe_ports port 777 # multiling http |
| 18 | +acl CONNECT method CONNECT |
| 19 | +http_access allow manager localhost |
| 20 | +http_access deny manager |
| 21 | +http_access deny !Safe_ports |
| 22 | +http_access deny CONNECT !SSL_ports |
| 23 | +http_access allow localnet |
| 24 | +http_access allow localhost |
| 25 | +http_access deny all |
| 26 | +http_port 3128 |
| 27 | +maximum_object_size 1024 MB |
| 28 | +# SET <PATH> to location of on-disk cache |
| 29 | +cache_dir aufs <PATH> 5000 24 256 max-size=10240000 min-size=10 |
| 30 | +coredump_dir /Users/gladiatr/t/squid |
| 31 | +refresh_pattern ^ftp: 1440 20% 10080 |
| 32 | +refresh_pattern ^gopher: 1440 0% 1440 |
| 33 | +refresh_pattern -i (/cgi-bin/|\?) 0 0% 0 |
| 34 | +refresh_pattern (Release|Packages(.gz)*)$ 0 20% 2880 |
| 35 | +refresh_pattern . 0 20% 4320 |
| 36 | +refresh_all_ims on |
0 commit comments