2026-07-11 00:29:47 +00:00
|
|
|
# /etc/caddy/Caddyfile on the VPS.
|
2026-07-15 19:58:32 +00:00
|
|
|
# Each domain's A/AAAA record must already point at this VPS — Caddy provisions a
|
2026-07-11 03:01:16 +00:00
|
|
|
# Let's Encrypt cert on first request and auto-renews. Nothing else to do for TLS
|
|
|
|
|
# (just make sure ports 80 and 443 are open).
|
|
|
|
|
#
|
2026-07-15 19:58:32 +00:00
|
|
|
# Layout:
|
|
|
|
|
# thermograph.org/* -> the Thermograph app (reverse-proxied to uvicorn)
|
|
|
|
|
# emigriffith.dev/ -> static portfolio site (served straight from disk)
|
|
|
|
|
# emigriffith.dev/thermograph* -> permanent redirect to thermograph.org (the app moved)
|
2026-07-11 03:01:16 +00:00
|
|
|
#
|
2026-07-15 19:58:32 +00:00
|
|
|
# Thermograph now owns thermograph.org's root, so it must run with
|
|
|
|
|
# THERMOGRAPH_BASE=/ (see /etc/thermograph.env) — the app serves its pages, assets
|
|
|
|
|
# and API at "/" with no sub-path prefix. One uvicorn on 127.0.0.1:8137 backs both
|
|
|
|
|
# thermograph.org (proxied) and the emigriffith.dev redirect.
|
|
|
|
|
|
|
|
|
|
thermograph.org {
|
|
|
|
|
encode zstd gzip
|
|
|
|
|
|
|
|
|
|
# The app serves everything at the root now (THERMOGRAPH_BASE=/).
|
|
|
|
|
reverse_proxy 127.0.0.1:8137
|
|
|
|
|
|
|
|
|
|
log {
|
|
|
|
|
output file /var/log/caddy/thermograph.log
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-11 00:29:47 +00:00
|
|
|
|
2026-07-11 03:01:16 +00:00
|
|
|
emigriffith.dev {
|
2026-07-11 00:29:47 +00:00
|
|
|
encode zstd gzip
|
|
|
|
|
|
2026-07-15 19:58:32 +00:00
|
|
|
# Thermograph moved to its own domain. Send the old sub-path there with a
|
|
|
|
|
# permanent redirect, stripping the /thermograph prefix so deep links map
|
|
|
|
|
# straight across (…/thermograph/calendar -> thermograph.org/calendar). The
|
|
|
|
|
# bare /thermograph (no trailing slash) goes to the new root.
|
|
|
|
|
handle_path /thermograph/* {
|
|
|
|
|
redir https://thermograph.org{uri} permanent
|
|
|
|
|
}
|
|
|
|
|
handle /thermograph {
|
|
|
|
|
redir https://thermograph.org/ permanent
|
2026-07-11 03:01:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Portfolio at the root. Point `root` at the built static site (for the Astro
|
|
|
|
|
# portfolio that's its `dist/` output). file_server serves index.html for
|
|
|
|
|
# directories and returns a real 404 for missing paths.
|
|
|
|
|
handle {
|
|
|
|
|
root * /var/www/emigriffith
|
|
|
|
|
file_server
|
|
|
|
|
}
|
2026-07-11 00:29:47 +00:00
|
|
|
|
|
|
|
|
log {
|
2026-07-11 03:01:16 +00:00
|
|
|
output file /var/log/caddy/emigriffith.log
|
2026-07-11 00:29:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-11 03:40:08 +00:00
|
|
|
# Old bookmarks to the raw IP (the pre-domain URL) would otherwise get bounced to
|
2026-07-15 19:58:32 +00:00
|
|
|
# HTTPS-on-the-IP, which has no cert and fails. Redirect them to the portfolio domain.
|
2026-07-11 03:40:08 +00:00
|
|
|
http://75.119.132.91 {
|
|
|
|
|
redir https://emigriffith.dev{uri} permanent
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-15 19:58:32 +00:00
|
|
|
# Optional: redirect www -> apex for either domain. Add the www CNAME/A record
|
|
|
|
|
# first, then uncomment the matching block.
|
2026-07-11 03:01:16 +00:00
|
|
|
# www.emigriffith.dev {
|
|
|
|
|
# redir https://emigriffith.dev{uri} permanent
|
2026-07-11 00:29:47 +00:00
|
|
|
# }
|
2026-07-15 19:58:32 +00:00
|
|
|
# www.thermograph.org {
|
|
|
|
|
# redir https://thermograph.org{uri} permanent
|
|
|
|
|
# }
|