15 lines
310 B
Caddyfile
15 lines
310 B
Caddyfile
:80 {
|
|
# Force HTTP, désactive auto-HTTPS
|
|
http://localhost {
|
|
php_server
|
|
route {
|
|
file_server
|
|
@php path *.php /index.php
|
|
php_fastcgi @php unix//run/php/php-fpm.sock
|
|
}
|
|
log {
|
|
output stdout
|
|
}
|
|
encode gzip
|
|
}
|
|
} |