Deploy / deploy (push) Successful in 13s
- Caddyfile: disable auto_https and admin, listen on :80 only - docker-compose: bind port only on 127.0.0.1 to avoid public exposure - bootstrap/app.php: trust all proxies so Laravel generates correct URLs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
147 B
Caddyfile
19 lines
147 B
Caddyfile
{
|
|
frankenphp
|
|
auto_https off
|
|
admin off
|
|
}
|
|
|
|
:80 {
|
|
root * /app/public
|
|
|
|
encode zstd br gzip
|
|
|
|
php_server
|
|
|
|
log {
|
|
output stderr
|
|
level WARN
|
|
}
|
|
}
|