Enviado em 03/07/2013 - 10:06h
Bom dia,
#Porta utilizada pelo squid
http_port 3128 transparent
#Nome do seu servidor (sem espacos)
visible_hostname vmdebian
#Memoria utilizada para objetos em transito
cache_mem 256 MB
cache_swap_low 90
cache_swap_high 95
#Local onde sera armazenado o cache do squid
#Local Onde o Cache e Gravado
cache_dir ufs /var/cache/squid 3000 16 256
#Local onde sera guardado os logs do squid
cache_access_log /var/log/squid3/access.log
#Regra de Atualizacao do cache
refresh_pattern ^ftp: 15 20% 2280
refresh_pattern ^gopher: 15 0% 2280
refresh_pattern . 15 20% 2280
#acls
#acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl SSL_ports port 443 563
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl Safe_ports port 901 # SWAT
acl purge method PURGE
acl CONNECT method CONNECT
#regras de acesso
http_access allow manager localhost
http_access allow manager
http_access allow purge localhost
http_access allow purge
http_access allow !Safe_ports
http_access allow CONNECT !SSL_ports
http_access allow all
icp_access allow all
# bloqueios
acl rede_local src 192.168.0.0/24
acl palavras_bloqueadas url_regex -i "/etc/squid3/bloqueios/palavras_bloqueadas.txt"
acl sites_bloqueados url_regex -i "/etc/squid3/bloqueios/sites_bloqueados.txt"
acl redes_sociais url_regex -i "/etc/squid3/bloqueios/redes_sociais.txt"
acl liberados src "/etc/squid3/bloqueios/ips_liberados.txt"
acl [*****] url_regex -i "/etc/squid3/bloqueios/sites_porno.txt "
acl formato_arquivo url_regex -i "/etc/squid3/bloqueios/formato_arquivo.txt"
acl horario_almoco time 12:00-13:00
http_access allow liberados
http_access allow redes_sociais horario_almoco
http_access deny redes_sociais
http_access deny sites_bloqueados
http_access deny palavras_bloqueadas
http_access deny [*****]
http_access deny formato_arquivo
http_access allow rede_local
http_access allow localhost
http_access deny all