Re: [squid-users] Allow specific set of IP to access a specific set of URL

2021-03-08 Thread Arjun K
Thanks Amos and Klauss for your response. On Wednesday, 24 February, 2021, 05:03:57 pm IST, Amos Jeffries wrote: On 24/02/21 10:14 pm, Klaus Brandl wrote: > The acl for the url must be of type url_regex, or something else: > > acl allowedurl url_regex "url.txt" > This line tells

Re: [squid-users] Allow specific set of IP to access a specific set of URL

2021-02-24 Thread Amos Jeffries
On 24/02/21 10:14 pm, Klaus Brandl wrote: The acl for the url must be of type url_regex, or something else: acl allowedurl url_regex "url.txt" This line tells Squid to load a file full of regex patterns. Nothing more. The http_access line is the list of rules that determines when those

Re: [squid-users] Allow specific set of IP to access a specific set of URL

2021-02-24 Thread Klaus Brandl
The acl for the url must be of type url_regex, or something else: acl allowedurl url_regex "url.txt" Regards Klaus Am Dienstag, den 23.02.2021, 18:09 + schrieb Arjun K: > Hi Team > > Could you please let me know how to define an acl so that a specific > set of IPs can access alone a

[squid-users] Allow specific set of IP to access a specific set of URL

2021-02-23 Thread Arjun K
Hi Team Could you please let me know how to define an acl so that a specific set of IPs can access alone a specific set of URLs. How to define such ACL. acl src "iplist.txt" acl allowedurl src "url.txt"http_access allowedurl The above configuration results in ERROR 403 in the logs. Also, I have