11 lines
424 B
Caddyfile
11 lines
424 B
Caddyfile
# Append to your existing Caddyfile (or include via `import`).
|
|
# DNS A/AAAA record for invoice-app.linumiq.com must point to this server first,
|
|
# otherwise Caddy will fail to obtain a Let's Encrypt certificate.
|
|
|
|
# Caddy runs in Docker on the `caddy_net` network and reaches the app by
|
|
# container name (the app does not publish a host port).
|
|
invoice-app.linumiq.com {
|
|
encode zstd gzip
|
|
reverse_proxy linumiq-invoice:3000
|
|
}
|