Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. acl manager proto cache_object
  2. acl localhost src 127.0.0.1/32
  3. acl to_localhost dst 127.0.0.0/8
  4. acl localnet src 192.168.100.0/24 192.168.101.0/24
  5. acl SSL_ports port 443
  6. acl Safe_ports port 80 # http
  7. acl Safe_ports port 21 # ftp
  8. acl Safe_ports port 443 # https
  9. acl Safe_ports port 70 # gopher
  10. acl Safe_ports port 210 # wais
  11. acl Safe_ports port 1025-65535 # unregistered ports
  12. acl Safe_ports port 280 # http-mgmt
  13. acl Safe_ports port 488 # gss-http
  14. acl Safe_ports port 591 # filemaker
  15. acl Safe_ports port 777 # multiling http
  16.  
  17. acl CONNECT method CONNECT
  18.  
  19. http_access allow manager localhost
  20. http_access deny manager
  21. http_access deny !Safe_ports
  22.  
  23. http_access deny to_localhost
  24. icp_access deny all
  25. htcp_access deny all
  26.  
  27. http_port 2211
  28. hierarchy_stoplist cgi-bin ?
  29. access_log /var/log/squid3/access.log squid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement