RE: [squid-users] blocking urls

2005-02-09 Thread Henrik Nordstrom
On Wed, 9 Feb 2005, cipher wrote: All I asked for was a way to stop that whole url, since the information o get is that the url is being blocked by it's partial length! :) Based on which information? Regards Henrik

RE: [squid-users] blocking urls + msn messenger down!

2005-02-09 Thread cipher
> You likely have "strip_query_terms" on (it's > settable in the > squid.conf. > It's on by default, and strips anything after a > question mark (?) from > the > URL before logging it. As long as you are > specifying the regex as I > typed > it above, you should be just fine. If you > want, test

RE: [squid-users] blocking urls

2005-02-09 Thread Chris Robertson
> -Original Message- > From: cipher [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 09, 2005 2:11 AM > To: Chris Robertson > Cc: squid-users@squid-cache.org > Subject: RE: [squid-users] blocking urls > > > Cópia Chris Robertson <[EMAIL PROTECTED]&g

RE: [squid-users] blocking urls

2005-02-09 Thread cipher
Hi Henrik, I don not quite understand your answer. All I asked for was a way to stop that whole url, since the information o get is that the url is being blocked by it's partial length! :) Regards *cipher* > when o match that url i got the information that the > following is being blocked: > >

RE: [squid-users] blocking urls

2005-02-09 Thread Henrik Nordstrom
On Wed, 9 Feb 2005, cipher wrote: when o match that url i got the information that the following is being blocked: awprofessional.com/articles/article.asp? Shouldn't it be blocking awprofessional.com/articles/article.asp?p63731 It probably is. access.log by default does not contain query terms. Thi

RE: [squid-users] blocking urls

2005-02-09 Thread cipher
Cópia Chris Robertson <[EMAIL PROTECTED]>: > > -Original Message- > > From: cipher [mailto:[EMAIL PROTECTED] > > Sent: Sunday, February 06, 2005 9:36 AM > > To: squid-users@squid-cache.org > > Subject: [squid-users] blocking urls > > > > &g

Re: [squid-users] blocking urls

2005-02-08 Thread Henrik Nordstrom
On Tue, 8 Feb 2005, cipher wrote: ^http://www.awprofessional.com/articles/article.asp?p=363731$ with url_regex. You should also translate the URL into regex ^http://www\.awprofessional\.com/articles/articles\.asp\?p=363731$ but keep in mind that this is an exact match for the URL. Any variance fr

Re: [squid-users] blocking urls

2005-02-08 Thread cipher
Hi Henrik, Got you! Now how am i supposed to stop this url, forl exemple? Waht is the better way to stop a url like the one that followed? I arranged to do it like it follows: ^http://www.awprofessional.com/articles/article.asp?p=363731$ with url_regex. Anyway i would like to know if this is t

Re: [squid-users] blocking urls

2005-02-07 Thread Henrik Nordstrom
On Sun, 6 Feb 2005, cipher wrote: I would use: acl p-block-hacking-urls urlpath_regex -i "/usr/local/squid/filter/hacking/urls" Because that is he file in which the url that i want to block, is in: [EMAIL PROTECTED]:/usr/local/squid/filter/hacking# grep awprofessional.com urls awprofessional.com/ar

RE: [squid-users] blocking urls

2005-02-07 Thread Chris Robertson
> -Original Message- > From: cipher [mailto:[EMAIL PROTECTED] > Sent: Sunday, February 06, 2005 9:36 AM > To: squid-users@squid-cache.org > Subject: [squid-users] blocking urls > > > Hi people, > > I am having serious trouble in blocking some urls. > Le

[squid-users] blocking urls

2005-02-06 Thread cipher
Hi people, I am having serious trouble in blocking some urls. Let's say i would want to block the following url: http://awprofessional.com/articles/article.asp?p=363731 I would use: acl p-block-hacking-urls urlpath_regex -i "/usr/local/squid/filter/hacking/urls" Because that is he file in whic

Re: [squid-users] Blocking URLs

2003-07-02 Thread Henrik Nordstrom
On Tuesday 01 July 2003 09.03, Li Wei wrote: > acl badURL2 urlpath_regex -i /.mp3 /.wma /.avi /.mpg /.mpeg /.swf > /.asf /.rm /.ram These regexes are very broad. regex patterns are not just matching the end of a URL, they are mathing the specified sequence of characters anywhere within the url,

Re: [squid-users] Blocking URLs

2003-07-01 Thread Andrew Thomson
perhaps it is the .ram causing havoc.. maybe you need a \.ram$ note the \ and the $ ajt. On Tue, Jul 01, 2003 at 03:03:56PM +0800, Li Wei wrote: > hi, all > > My colleague happened to access a site which need authentication. > After input userID and PW, the access was rejected by Squid. > >

[squid-users] Blocking URLs

2003-07-01 Thread Li Wei
hi, all My colleague happened to access a site which need authentication. After input userID and PW, the access was rejected by Squid. So I checked over cache.log and squid.conf. I found one of access lists takes effect. I dont understant why indeed, they seem quite different. Can you help me?