Advertisement
Guest User

Untitled

a guest
Mar 1st, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
  2. acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
  3. acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
  4. acl localnet src fc00::/7 # RFC 4193 local private network range
  5. acl localnet src fe80::/10 # RFC 4291 link-local (directly plugged) machines
  6. acl SSL_ports port 443
  7. acl Safe_ports port 80 # http
  8. acl Safe_ports port 21 # ftp
  9. acl Safe_ports port 443 # https
  10. acl Safe_ports port 70 # gopher
  11. acl Safe_ports port 210 # wais
  12. acl Safe_ports port 1025-65535 # unregistered ports
  13. acl Safe_ports port 280 # http-mgmt
  14. acl Safe_ports port 488 # gss-http
  15. acl Safe_ports port 591 # filemaker
  16. acl Safe_ports port 777 # multiling http
  17. acl CONNECT method CONNECT
  18. http_access deny !Safe_ports
  19. http_access deny CONNECT !SSL_ports
  20. http_access allow localhost manager
  21. http_access deny manager
  22. http_access allow localnet
  23. http_access allow localhost
  24. http_access deny all
  25. cache deny all
  26. http_port 3128
  27. http_port 3428 intercept
  28. https_port 3429 intercept ssl-bump generate-host-certificates=on dynamic_cert_mem_cache_size=200MB cert=/home/basel/squid/rootCAcert.pem key=/home/basel/squid/rootCAkey.key
  29. #ssl_bump server-first all
  30. #ssl_bump stare all
  31. ssl_bump peek all
  32. ssl_bump bump all
  33. #ssl_bump allow all
  34. sslcrtd_program /lib/squid/ssl_crtd -s /var/cache/squid/ssl_db/ -M 200MB
  35. sslcrtd_children 3 startup=1 idle=1
  36. coredump_dir /var/cache/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 . 0 20% 4320
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement