amiltoncesar
(usa Red Hat)
Enviado em 25/04/2009 - 16:16h
Esse eh meu squid, fiz varias alteraçoes nele para tentar fazer o credicerto funcionar, inclusive colocando um ip liberado pra tudo, colocado tb outra regra "always_direct".
Agradeço a quem puder me dar uma luz.
obrigado
#
http_port 3128 transparent
visible_hostname proxy
# Cache #
cache_mem 256 MB
maximum_object_size_in_memory 128 KB
maximum_object_size 512 MB
minimum_object_size 64 KB
cache_swap_low 90
cache_swap_high 95
cache_dir ufs /cache/squid 10240 16 256
cache_access_log /cache/squid/access.log
refresh_pattern ^ftp: 15 20% 2280
refresh_pattern ^gopher: 15 20% 2280
refresh_pattern . 15 20% 2280
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl SSL_ports port 443 563
acl Safe_ports port 21 80 443 563 70 210 580 488 59 777 901 1024-65535
acl purge method PURGE
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
# regras bloqueio e liberacao #
acl netcerto dstdomain credicerto.com.br
always_direct allow netcerto
acl ipliberados src "/etc/squid/ipliberados"
http_access allow ipliberados
acl sites_lib url_regex -i "/etc/squid/sites_lib"
http_access deny !sites_lib
acl redelocal src 192.168.4.0/24
http_access allow localhost
http_access allow redelocal
http_access deny all