Advertisement
Guest User

Untitled

a guest
Oct 26th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. cat /etc/squid/squid.conf
  2. http_port 80 accel defaultsite=knollwoodtrust.net
  3. http_port 80 accel defaultsite=nyctelecomm.com
  4.  
  5. cache_peer 198.74.49.126 parent 80 0 no-query originserver name=knoll
  6. cache_peer_domain knoll www.knollwoodtrust.net knollwoodtrust.net
  7. cache_peer 198.74.49.126 parent 80 0 no-query originserver name=nyctele
  8. cache_peer_domain nyctele www.nyctelecomm.com nyctelecomm.com
  9.  
  10.  
  11. acl manager proto cache_object
  12. acl localhost src 127.0.0.1/32 ::1
  13. acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
  14. acl myBox src 198.74.48.122
  15. acl router1 src 198.74.49.126
  16. acl our_sites dstdomain 198.74.49.126
  17. #acl our_sites dstdomain knollwoodtrust.net
  18. acl our_sites dstdomain 173.255.223.193
  19. acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
  20. acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
  21. acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
  22. acl localnet src fc00::/7 # RFC 4193 local private network range
  23. acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
  24. acl localnet src 198.74.49.126/32
  25. acl our_sites dstdomain knollwoodtrust.net nyctelecomm.com
  26. via off
  27.  
  28. reply_header_access X-Cache-Lookup deny !localnet
  29. reply_header_access X-Squid-Error deny !localnet
  30. reply_header_access X-Cache deny !localnet
  31. acl SSL_ports port 443
  32. acl Safe_ports port 80 # http
  33. acl Safe_ports port 21 # ftp
  34. acl Safe_ports port 443 # https
  35. acl Safe_ports port 70 # gopher
  36. acl Safe_ports port 210 # wais
  37. acl Safe_ports port 1025-65535 # unregistered ports
  38. acl Safe_ports port 280 # http-mgmt
  39. acl Safe_ports port 488 # gss-http
  40. acl Safe_ports port 591 # filemaker
  41. acl Safe_ports port 777 # multiling http
  42. acl Safe_ports port 901 # SWAT
  43. acl CONNECT method CONNECT
  44. http_access allow manager localhost myBox router1 our_sites
  45. http_access deny manager
  46. http_access deny !Safe_ports
  47. http_access deny CONNECT !SSL_ports
  48. http_access allow localnet
  49. http_access allow localhost
  50. http_access allow localhost
  51. http_access allow our_sites
  52.  
  53. cache_peer_access nyctele allow our_sites
  54. cache_peer_access knoll allow our_sites
  55. #cache_peer_access myAccel deny all
  56.  
  57. coredump_dir /var/cache/squid
  58. refresh_pattern ^ftp: 1440 20% 10080
  59. refresh_pattern ^gopher: 1440 0% 1440
  60. refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
  61. refresh_pattern . 0 20% 4320
  62. memory_pools off
  63. cache deny all
  64. forwarded_for truncate
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement