Enviado em 02/06/2013 - 23:13h
Boa Noite a todos...
#--------PORTA DO SQUID
http_port 3128
#--------HOSTNAME DO SQUID
visible_hostname servers
#-------Paginas de erros do Squid
error_directory /usr/share/squid3/errors/Portuguese
#-------Configuracao do CACHE--------------------------------------------------------------
cache_mem 128 MB
maximum_object_size_in_memory 128 KB
maximum_object_size 1024 MB
minimum_object_size 0 KB
cache_swap_low 90
cache_swap_high 95
access_log /var/log/squid3/access.log squid
cache_store_log /var/log/squid3/store.log
cache_log /var/log/squid3/cache.log
cache_dir ufs /var/spool/squid3 24048 256 512
#ACLS DA REDE-------------------------------------------------------------------------------
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl SSL_ports port 443 563
acl Safe_ports port 80
acl Safe_ports port 21
acl Safe_ports port 443 563
acl Safe_ports port 70 #protocolo gopher antig�o
acl Safe_ports port 210 #whais
acl Safe_ports port 1024-65535 #todas as outras portas
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 #multi http
acl Safe_ports port 901 #acesso Swat
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access allow localhost
http_access deny CONNECT !SSL_PORTS
#-------PASSA DIRETO PELO CACHE
acl passa_por_direto url_regex -i “/etc/squid3/liberado/direto”
http_access allow passa_por_direto
no_cache deny passa_por_direto
#-------BLOQUEIO POR PALAVRAS
acl bloqueio_por_palavras url_regex -i “/etc/squid3/bloqueio/palavras”
http_access deny bloqueio_por_palavras
#-------BLOQUEIO POR SITE
acl bloqueio_por_site url_regex -i “/etc/squid3/bloqueio/sites”
http_access deny bloqueio_por_site
#-------BLOQUEIO DE DOWNLOAD POR EXTENSAO
acl bloqueio_por_ex url_regex -i “/etc/squid3/bloqueio/downloads”
http_access deny bloqueio_por_ex
#-------BLOQUEIO POR IP
acl bloqueio_por_IP url_regex -i “/etc/squid3/bloqueio/ip”
http_access deny bloqueio_por_IP
#always_direct allow radios_on-line
#-------Liberar Redes
http_access allow localhost
acl localnet src 192.168.1.0/24
http_access allow localnet
http_access deny all