Koozali.org: home of the SME Server

squid.conf

thrruss

squid.conf
« on: November 20, 2000, 11:37:04 PM »
I have a problem with my squid configuration.
the ip address of my gateway is 192.168.0.1
my local network is 192.168.0.x
I can't access any http page.
My squid.conf file is as follow:

>http_port 8080
>hierarchy_stoplist cgi-bin ? .cgi
>cache_mem 8 MB
>maximum_object_size 4096 KB
>cache_dir ufs /usr/local/squid/cache 900 16 256
>cache_access_log /usr/local/squid/logs/access.log
>cache_log /usr/local/squid/logs/cache.log
>mime_table /usr/local/squid/etc/mime.conf
>debug_options ALL,1
>acl allowed_hosts src 192.168.0.0/255.255.255.0
>acl localhost src 127.0.0.1/255.255.255.0
>acl manager proto cache_object
>acl all src 0.0.0.0/0.0.0.0
>acl SSL_ports port 443 563
>acl safe_ports port 80 21 443 563 70 210 1025-65535
>acl CONNECT method CONNECT
>http_access allow manager localhost
>http_access allow manager allowed_hosts
>http_access deny !Safe_ports
>http_access deny CONNECT !SSL_ports
>http_access allow allowed_hosts
>http_access deny !allowed_hosts
>cache_mgr root@localhost
>logfile_rotate 4
>dns_nameservers 193.252.19.3 193.252.19.4

Thank you for your help!