feat(caddy): expose miccheck-qa admin/api on local domains

Joins caddy to miccheck-qa-net so it can reverse-proxy to the
admin/api containers by name. Uses self-signed internal TLS since
miccheck-qa.com is a local-only hosts-file domain, not a real zone.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-06 14:03:34 -07:00
parent 93e6f0bd2b
commit 2e510b9851
2 changed files with 16 additions and 0 deletions

View File

@@ -84,3 +84,15 @@
localhost {
respond "Hello, world!"
}
admin.miccheck-qa.com {
tls internal
encode gzip
reverse_proxy admin:80
}
api.miccheck-qa.com {
tls internal
encode gzip
reverse_proxy api:8080
}