<div dir="auto"><div>Thanks Amos,<div dir="auto"><br></div><div dir="auto">What about if I wanted to put a normal URL in with the URL regex ones like</div><div dir="auto"><br></div><div dir="auto">^zzz-iobuckets-io[0-9]+-[0-9a-z]+\.s3\.amazonaws\.com:[0-9]$<br></div><div dir="auto">^google\.com$</div><div dir="auto"><br></div><div dir="auto">Would that work</div><br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, 21 May 2022, 03:45 Amos Jeffries, <<a href="mailto:squid3@treenet.co.nz">squid3@treenet.co.nz</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
Your solution may "works", but only partial.<br>
<br>
Diving back to your original request:<br>
<br>
On 20/05/22 02:25, robert k Wild wrote:<br>
 > hi all,<br>
 ><br>
 > want to make the below into a regex as after the io..., could be any<br>
 > number and letter, the - stays in the same position but to make it<br>
 > simple i just want to make anything a wildcard<br>
 ><br>
 > <a href="http://zzz-iobuckets-io50-1lnk65fe5gm7n.s3.amazonaws.com/" rel="noreferrer noreferrer" target="_blank">http://zzz-iobuckets-io50-1lnk65fe5gm7n.s3.amazonaws.com/</a><br>
 > <<a href="http://zzz-iobuckets-io50-1lnk65fe5gm7n.s3.amazonaws.com/" rel="noreferrer noreferrer" target="_blank">http://zzz-iobuckets-io50-1lnk65fe5gm7n.s3.amazonaws.com/</a>><br>
 ><br>
 > something like this ive done but it doesnt work<br>
 ><br>
 > "^zzz-iobuckets-io.*.<a href="http://s3.amazonaws.com" rel="noreferrer noreferrer" target="_blank">s3.amazonaws.com</a> <<a href="http://s3.amazonaws.com" rel="noreferrer noreferrer" target="_blank">http://s3.amazonaws.com</a>>$"<br>
 ><br>
<br>
<br>
Please notice that your regex does **not** match any valid "URL".<br>
<br>
It explicitly only matches strings that start without a scheme. This is <br>
matching only URI. Specifically it matches URI-authority which HTTP only <br>
sees in CONNECT request-target's.<br>
<br>
<br>
I think what you actually want is this:<br>
<br>
   ^zzz-iobuckets-io[0-9]+-[0-9a-z]+\.s3\.amazonaws\.com:[0-9]$<br>
<br>
<br>
That will limit the successful matches to <a href="http://amazonaws.com" rel="noreferrer noreferrer" target="_blank">amazonaws.com</a> sub-domains. <br>
Preventing things like "<a href="http://zzz-iobuckets-io.s3.amazonaws.com.example.com" rel="noreferrer noreferrer" target="_blank">zzz-iobuckets-io.s3.amazonaws.com.example.com</a>"<br>
<br>
<br>
FYI, The regex language supported by Squid is the original GNU regex. <br>
The operators are ^, $, +, *, ?, |, \x, [^-], and (). No character <br>
classes, back references, or repetition groups.<br>
<br>
<br>
HTH<br>
Amos<br>
<br>
_______________________________________________<br>
squid-users mailing list<br>
<a href="mailto:squid-users@lists.squid-cache.org" target="_blank" rel="noreferrer">squid-users@lists.squid-cache.org</a><br>
<a href="http://lists.squid-cache.org/listinfo/squid-users" rel="noreferrer noreferrer" target="_blank">http://lists.squid-cache.org/listinfo/squid-users</a><br>
</blockquote></div></div></div>