marceloviana
(usa CentOS)
Enviado em 31/08/2012 - 12:35h
Realmente o André e o johnnyb(que também está me ajudando) tinham razão!
No meu .conf Tinha um erro no delay_pools, então dei um lida na parte de delay_pool da documentação oficial (http://wiki.squid-cache.org/Features/DelayPools) e fiz novas configurações.
Testei todos os controles, inclusive o limite de determinado host para sites específicos e funcionou beleza. Agora é aguardar para ver o resultado e se não vai ficar lento novamente.
Obs.: ontem tive um problema de espaço em disco 100% cheio. Então tiver que apagar todo cache em disco(demoraa...) e direcionar o cache do squid para uma partição maior. Qual sugestão vocês me dão a respeito de cache em disco do squid(apagar periodicamente, configurar no CRON, etc..)?
Segue minha nova conf e obrigado por estarem me ajudando:
################### Proxy ##############
http_port 3128 transparent
visible_hostname 254-proxy
error_directory /usr/share/squid/errors/Portuguese
access_log /var/log/squid/access_infsite.log
##################### Config Cache: #########
cache_mem 2048 MB
cache_swap_low 80
cache_swap_high 85
maximum_object_size 1 MB
minimum_object_size 0 KB
maximum_object_size_in_memory 128 KB
#ipcache_size 3072
ipcache_low 90
ipcache_high 93
#refresh_pattern ^ftp: 1440 20% 10080
#refresh_pattern ^gopher: 1440 0% 1440
#refresh_pattern (cgi-bin|\?) 0 0% 0
#refresh_pattern . 0 20% 4320
cache_dir ufs /home/cache_squid 2048 16 256
##################### extras #############
pipeline_prefetch on
ignore_expect_100 on
##################### Safe_ports: #########
acl SSL_ports port 443 563
acl Safe_ports port 21 80 443 587 995 563 70 210 280 488 59 777 8080 389 901 1025-65535
acl purge method PURGE
acl CONNECT method CONNECT
###################### declarações ########
acl all src 0.0.0.0/0.0.0.0
acl rede0 src "/etc/squid/config/rede0"
acl rede21 src "/etc/squid/config/rede21"
acl social_clientes src "/etc/squid/config/social_clientes"
acl social_url url_regex -i "/etc/squid/config/social_url"
##################### DNS #################
dns_nameservers 10.26.20.250
dns_nameservers 8.8.8.8
###################### delay_pools #########
delay_pools 3
delay_class 1 1
delay_parameters 1 9/9
delay_access 1 allow social_url social_clientes # lentidão
delay_access 1 deny all
delay_class 2 2
delay_parameters 2 -1/-1 110000/110000 # download até 120k
delay_access 2 allow rede0
delay_access 2 deny all
delay_class 3 2
delay_parameters 3 -1/-1 210000/210000 # download até 220k
delay_access 3 allow rede21
delay_access 3 deny all
###################### liberar ou negar acesso
http_access allow rede0
http_access allow rede21
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow social_clientes
http_access deny all
## É o Senhor que mostra os caminhos.