githubEdit

Custom HTTPS Configuration

By default the install script generates a minimal Caddyfile in ./.volumes/caddy/Caddyfile:

https://defguard.example.com {
    reverse_proxy core:8000
}

https://proxy.example.com {
    reverse_proxy proxy:8080
}

:80 {
    respond 404
}
:443 {
    respond 404
}

This configuration leverages Caddy's default automatic HTTPS supportarrow-up-right.

If you wish to customize your HTTPS certificate setup, please follow the official Caddy docsarrow-up-right.

Some common scenarios:

Last updated