all
Some checks failed
Publish Docker Image / build-and-push (push) Failing after 2m13s

This commit is contained in:
Sam Kintop
2026-04-30 09:44:02 -05:00
parent 0a30837e3d
commit bf3870ccca
111 changed files with 8383 additions and 0 deletions

28
docker/Caddyfile Normal file
View File

@@ -0,0 +1,28 @@
{
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
}
}