Files
iblogs/docker/Caddyfile
Sam Kintop bf3870ccca
Some checks failed
Publish Docker Image / build-and-push (push) Failing after 2m13s
all
2026-04-30 09:44:02 -05:00

28 lines
453 B
Caddyfile

{
servers {
trusted_proxies static {$TRUSTED_PROXIES:private_ranges}
trusted_proxies_strict
}
frankenphp {
worker /app/worker.php {
num {$FRANKENPHP_WORKERS:16}
}
}
}
{$SERVER_NAME::80} {
root * /app/web/public
encode zstd br gzip
@static file
handle @static {
file_server
}
handle {
root * /app
rewrite * /worker.php
php_server
}
}