mirror of
https://github.com/mashirozx/docker-php-nginx.git
synced 2024-11-22 14:58:15 +08:00
Reformat file to remove tabs and to make it consistent
This commit is contained in:
parent
6a3b2f4abc
commit
95ed923068
@ -1,24 +1,24 @@
|
|||||||
worker_processes 1;
|
worker_processes 1;
|
||||||
error_log stderr warn;
|
error_log stderr warn;
|
||||||
pid /run/nginx.pid;
|
pid /run/nginx.pid;
|
||||||
|
|
||||||
events {
|
events {
|
||||||
worker_connections 1024;
|
worker_connections 1024;
|
||||||
}
|
}
|
||||||
|
|
||||||
http {
|
http {
|
||||||
include mime.types;
|
include mime.types;
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
|
|
||||||
log_format main_timed '$remote_addr - $remote_user [$time_local] "$request" '
|
log_format main_timed '$remote_addr - $remote_user [$time_local] "$request" '
|
||||||
'$status $body_bytes_sent "$http_referer" '
|
'$status $body_bytes_sent "$http_referer" '
|
||||||
'"$http_user_agent" "$http_x_forwarded_for" '
|
'"$http_user_agent" "$http_x_forwarded_for" '
|
||||||
'$request_time $upstream_response_time $pipe $upstream_cache_status';
|
'$request_time $upstream_response_time $pipe $upstream_cache_status';
|
||||||
|
|
||||||
access_log /dev/stdout main_timed;
|
access_log /dev/stdout main_timed;
|
||||||
error_log /dev/stderr notice;
|
error_log /dev/stderr notice;
|
||||||
|
|
||||||
keepalive_timeout 65;
|
keepalive_timeout 65;
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen [::]:8080 default_server;
|
listen [::]:8080 default_server;
|
||||||
@ -36,19 +36,17 @@ http {
|
|||||||
try_files $uri $uri/ /index.php?q=$uri&$args;
|
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;
|
error_page 500 502 503 504 /50x.html;
|
||||||
location = /50x.html {
|
location = /50x.html {
|
||||||
root /var/lib/nginx/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$ {
|
location ~ \.php$ {
|
||||||
try_files $uri =404;
|
try_files $uri =404;
|
||||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||||
fastcgi_pass 127.0.0.1:9000;
|
fastcgi_pass 127.0.0.1:9000;
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
||||||
fastcgi_index index.php;
|
fastcgi_index index.php;
|
||||||
@ -59,15 +57,13 @@ http {
|
|||||||
expires 5d;
|
expires 5d;
|
||||||
}
|
}
|
||||||
|
|
||||||
# deny access to . files, for security
|
# Deny access to . files, for security
|
||||||
#
|
|
||||||
location ~ /\. {
|
location ~ /\. {
|
||||||
log_not_found off;
|
log_not_found off;
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
|
|
||||||
# allow fpm ping and status from localhost
|
# Allow fpm ping and status from localhost
|
||||||
#
|
|
||||||
location ~ ^/(fpm-status|fpm-ping)$ {
|
location ~ ^/(fpm-status|fpm-ping)$ {
|
||||||
access_log off;
|
access_log off;
|
||||||
allow 127.0.0.1;
|
allow 127.0.0.1;
|
||||||
|
Loading…
Reference in New Issue
Block a user