mirror of
https://github.com/bckelley/phpmyadmin-docker-lightweight.git
synced 2026-08-24 03:24:11 -05:00
25 lines
273 B
Caddyfile
25 lines
273 B
Caddyfile
{
|
|
auto_https off
|
|
admin off
|
|
log {
|
|
level WARN
|
|
}
|
|
servers {
|
|
trusted_proxies static 0.0.0.0/0 ::/0
|
|
}
|
|
}
|
|
|
|
:80 {
|
|
root * /var/www/html/
|
|
php_fastcgi localhost:9000
|
|
file_server
|
|
encode zstd gzip
|
|
}
|
|
|
|
# Internal healthcheck
|
|
:9999 {
|
|
handle /health {
|
|
respond "OK" 200
|
|
}
|
|
}
|