You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes you want to forward all subdomains to your upstream proxy. If you got multiple TLDs for example, you'd have to declare a config for each of them. Also you might want to capture all subdomains. I added some examples below
Implementations ideas (optional)
Add the ability to use a regex, here are some examples of how one could use it:
.*\.?example\.com - Allow any subdomain like test.example.com 24hours.example.com
[a-z]+\.example\.com - Allow any char subdomains like test.example.com abc.example.com
example\.(com|net|org) - Catch multiple TLDs at once like example.com example.net example.org
Code of Conduct
I agree to follow this project's Code of Conduct
The text was updated successfully, but these errors were encountered:
What's needed and why?
Sometimes you want to forward all subdomains to your upstream proxy. If you got multiple TLDs for example, you'd have to declare a config for each of them. Also you might want to capture all subdomains. I added some examples below
Implementations ideas (optional)
Add the ability to use a regex, here are some examples of how one could use it:
Code of Conduct
The text was updated successfully, but these errors were encountered: