Reformat file to remove tabs and to make it consistent

migrate-github-actions
Tim de Pater 2019-11-05 13:36:53 +01:00
parent 6a3b2f4abc
commit 95ed923068
No known key found for this signature in database
GPG Key ID: BFE5D809439C9723
1 changed files with 14 additions and 18 deletions

View File

@ -36,15 +36,13 @@ http {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
# redirect server error pages to the static page /50x.html
#
# Redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/lib/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
# Pass the PHP scripts to PHP-FPM listening on 127.0.0.1:9000
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
@ -59,15 +57,13 @@ http {
expires 5d;
}
# deny access to . files, for security
#
# Deny access to . files, for security
location ~ /\. {
log_not_found off;
deny all;
}
# allow fpm ping and status from localhost
#
# Allow fpm ping and status from localhost
location ~ ^/(fpm-status|fpm-ping)$ {
access_log off;
allow 127.0.0.1;