Re: [squid-users] Simple REGEX not working...

2020-07-22 Thread David A. Gershman
Thank Amos.  Ironically I just found that out with testing and then a search pointing me here:     https://wiki.squid-cache.org/Features/HTTPS Sadly, I should have thought of that.  Been a long day I guess. Thanks again! --David On 7/22/20 8:58 PM, Amos Jeffries wrote: On 23/07/20 3:27 pm,

Re: [squid-users] Simple REGEX not working...

2020-07-22 Thread Amos Jeffries
On 23/07/20 3:27 pm, David A. Gershman wrote: > Hello again, > > After further testing, the looks like the only thing being regex'd > against is the domain name.  I shrunk the RE down to just: > >     acl user_allowed url_regex http  # nothing more, just 'http' > > and it /*still*/ failed!!!  It

Re: [squid-users] Simple REGEX not working...

2020-07-22 Thread David A. Gershman
Hello again, After further testing, the looks like the only thing being regex'd against is the domain name.  I shrunk the RE down to just:     acl user_allowed url_regex http  # nothing more, just 'http' and it /*still*/ failed!!!  It's as if the "whole url" (claimed by the docs) is /not/ be

[squid-users] Simple REGEX not working...

2020-07-22 Thread David A. Gershman
Hello, I have the following in my config file:     acl user_allowed url_regex ^https://example\.com/ but surfing to that site fails (authentication works fine).  My ultimate goal is to have an RE comparable to the PCRE of:     ^https?:\/\/.*?example\.com\/ While the PCRE works just fine in