Re: [squid-users] Running a proxy also for https sites.

From: Naeem <rhlinux71@dont-contact.us>
Date: Tue, 12 Jun 2001 13:12:14 +0500

> acl all src 192.168.111.53/0.0.0.0

it should be
acl all src 0.0.0.0/0.0.0.0
acl my_user src 192.168.111.53 (without any subnet mask assuming that this
is a single host that is connecting to Squid)

> 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 80 21 443 563 70 210 1025-65535
> acl CONNECT method CONNECT
>
>
> http_access allow manager localhost
> http_access allow manager

add the following line here
http_access deny all !my_user

> http_access allow !Safe_ports

it should be
http_access deny !Safe_ports

> http_access deny CONNECT !SSL_ports

Keep the order of the acl's same as here.
Hope this will help.
Received on Tue Jun 12 2001 - 02:12:45 MDT

This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 17:00:43 MST