Skip to content
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

Allow routing to wildcard subdomains #45

Merged
merged 1 commit into from
Oct 6, 2024
Merged

Commits on Oct 5, 2024

  1. Allow routing to wildcard subdomains

    This allows routing to wildcard subdomains by specifying a target like:
    
        --target=*.example.com
    
    This matches requests to hosts with any subdomain in place of the `*`.
    It does *not* match multiple levels of subdomain, nor are multiple `*`
    allowed in a single host; it behaves much like wildcard matching in TLS
    certificates.
    
    Automatic TLS is not currently supported with wildcard hosts (because
    the challenge types we use -- `http-01` and `tls-alpn-01` -- can't be
    used to generate wildcard certificates). However you can bring your own
    wildcard certificates using `--tls-certificate-path` /
    `--tls-private-key-path`.
    kevinmcconnell committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    7a8fde6 View commit details
    Browse the repository at this point in the history