added availability

This commit is contained in:
2026-05-01 18:24:09 -04:00
parent ed7cae1acd
commit 036512f590
22 changed files with 8313 additions and 4 deletions

23
caddy/Caddyfile Normal file
View File

@@ -0,0 +1,23 @@
{
# email replaced via env at deploy time
email {$ACME_EMAIL:admin@example.com}
}
{$APP_DOMAIN:localhost} {
encode zstd gzip
@stripe path /api/stripe/webhook
handle @stripe {
# Stripe needs raw body — Next.js handler reads raw bytes.
reverse_proxy app:3000
}
handle {
reverse_proxy app:3000
}
log {
output stderr
format console
}
}