install from scratch docs

This commit is contained in:
Igor Loskutov
2025-12-05 12:10:28 -05:00
parent f9c8223e50
commit 3ef51ad1c8
12 changed files with 1189 additions and 155 deletions

16
Caddyfile Normal file
View File

@@ -0,0 +1,16 @@
# Reflector Caddyfile
# 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
# 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
}