11 lines
180 B
Caddyfile
11 lines
180 B
Caddyfile
{$SITE_HOST:localhost} {
|
|
encode zstd gzip
|
|
|
|
@api path /api/* /health
|
|
reverse_proxy @api backend:5000
|
|
|
|
root * /srv
|
|
try_files {path} /index.html
|
|
file_server
|
|
}
|