- rename Caddyfile.snippet → Caddyfile (maintainer's full production file) - restore Caddyfile.snippet as a minimal public reference (famapp blocks only) - add compose.example.yaml: standalone famapp + authentik template for new deployers; compose.yaml remains the maintainer's homelab monolith - update deploy/README.md: file table, setup steps referencing example files - apply-compose.ps1: point Caddy push at deploy/Caddyfile (not snippet)
12 lines
258 B
Caddyfile
12 lines
258 B
Caddyfile
# Add these blocks to your existing Caddyfile.
|
|
# Assumes famapp and authentik-server are reachable by Caddy
|
|
# (e.g. on a shared Docker network).
|
|
|
|
fam.yourdomain.com {
|
|
reverse_proxy famapp:3000
|
|
}
|
|
|
|
auth.yourdomain.com {
|
|
reverse_proxy authentik-server:9000
|
|
}
|