-
-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wildcard subdomain routing #206
Comments
Hi, Well, in my understanding, you consider a setup like the following:
Then, you mean that requests for However, the problem to implement such a catch all domain would be complicated, considering multiple wildcard domain certificates. Consider the case where another wildcard domain certificate for
This policy is from the security concern. I just wanted to prevent unintended access with wrong server names in TLS ClientHello. |
Hmm, would it then be possible / make sense to declare a separate app with |
I use rpxy to route certain subdomains to specific apps/pages, but I'd like a catch-all route for
*.my-domain.tld
as a fallback so that I can either redirect those back to the main domain or serve them a specific not found page.Today I just get a
503 Service Unavailable
for any subdomain that's not explicitly registered, and I don't see anything in the code that looks like it'd support wildcards. This even happens when I specify adefault_app
, both for HTTP and HTTPS. The README seems to indicate that the latter isn't possible:... but I don't understand why ^ is the case when I have a tls cert with a wildcard subdomain. Is there something else that'd prevent that from working?
The text was updated successfully, but these errors were encountered: