mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-02-04 09:56:47 +00:00
25 lines
904 B
Caddyfile
25 lines
904 B
Caddyfile
# Reflector Caddyfile (optional reverse proxy)
|
|
# Use this only when you run Caddy via: docker compose -f docker-compose.prod.yml --profile caddy up -d
|
|
# If Coolify, Traefik, or nginx already use ports 80/443, do NOT start Caddy; point your proxy at web:3000 and server:1250.
|
|
#
|
|
# Replace example.com with your actual domains. CORS is handled by the backend - Caddy just proxies.
|
|
#
|
|
# For environment variable substitution, set:
|
|
# FRONTEND_DOMAIN=app.example.com
|
|
# API_DOMAIN=api.example.com
|
|
# AUTHENTIK_DOMAIN=authentik.example.com (optional, for authentication)
|
|
# Or edit this file directly with your domains.
|
|
|
|
{$FRONTEND_DOMAIN:app.example.com} {
|
|
reverse_proxy web:3000
|
|
}
|
|
|
|
{$API_DOMAIN:api.example.com} {
|
|
reverse_proxy server:1250
|
|
}
|
|
|
|
# Uncomment if using Authentik for authentication (see auth-setup.md)
|
|
# {$AUTHENTIK_DOMAIN:authentik.example.com} {
|
|
# reverse_proxy authentik-server-1:9000
|
|
# }
|