7 lines
266 B
Text
7 lines
266 B
Text
|
|
# Caddy serves TryPost on your domain with automatic HTTPS (Let's Encrypt).
|
||
|
|
# APP_DOMAIN is provided by the caddy service in compose.prod.yaml.
|
||
|
|
# reverse_proxy transparently passes through WebSocket upgrades (Reverb on /app).
|
||
|
|
{$APP_DOMAIN} {
|
||
|
|
reverse_proxy app:80
|
||
|
|
}
|