13 lines
395 B
Plaintext
13 lines
395 B
Plaintext
# Paste this block into your HOST Caddy config (e.g. /etc/caddy/Caddyfile)
|
|
# Replace the domain and adjust the port if you changed it in docker-compose.yml
|
|
|
|
bayareait.services, www.bayareait.services {
|
|
encode zstd gzip
|
|
|
|
reverse_proxy localhost:8080
|
|
|
|
# Optional: redirect www → non-www
|
|
@www host www.bayareait.services
|
|
redir @www https://bayareait.services{uri} permanent
|
|
}
|