On Monday 14 July 2003 01.16, rem mek wrote: > i am new to this, please help me. i only have: > > acl group1 /usr/local/squid/etc/group1.txt > acl group2 /usr/local/squid/etc/group2.txt > > i do not know what acl type i will use.
Two errors here: a) after the acl name you need to specify an acl type. See squid.conf for a list of the available acl types. b) To have an acl include the list to match from a file the file name needs to be enclosed in doublequotes > i am trying to enter userid in each group and allow > them to access the web in a specific day and time. In such case the line becomes acl group1 proxy_auth "/usr/local/squid/etc/group1.txt" and group1.txt should contain one login name per line. Regards Henrik
