25 lines
284 B
Plaintext
25 lines
284 B
Plaintext
|
|
# Caddyfile pour l'application écoutant sur localhost
|
||
|
|
{
|
||
|
|
admin off
|
||
|
|
}
|
||
|
|
|
||
|
|
:<%= $listen_port %> {
|
||
|
|
root * <%= $root_dir %>
|
||
|
|
|
||
|
|
encode zstd br gzip
|
||
|
|
|
||
|
|
# Clear Headers
|
||
|
|
header {
|
||
|
|
-Server
|
||
|
|
-X-Powered-By
|
||
|
|
}
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
log {
|
||
|
|
output stdout
|
||
|
|
}
|
||
|
|
|
||
|
|
file_server
|
||
|
|
php_server
|
||
|
|
}
|