2019-11-05 20:36:53 +08:00
|
|
|
worker_processes 1;
|
2019-01-26 20:54:53 +08:00
|
|
|
error_log stderr warn;
|
2016-07-29 04:02:52 +08:00
|
|
|
pid /run/nginx.pid;
|
2016-02-16 01:20:56 +08:00
|
|
|
|
2016-03-16 20:34:24 +08:00
|
|
|
events {
|
2019-11-05 20:36:53 +08:00
|
|
|
worker_connections 1024;
|
2016-03-16 20:34:24 +08:00
|
|
|
}
|
2016-02-16 01:20:56 +08:00
|
|
|
|
2016-03-16 20:34:24 +08:00
|
|
|
http {
|
2019-11-05 20:36:53 +08:00
|
|
|
include mime.types;
|
|
|
|
default_type application/octet-stream;
|
2016-03-16 20:34:24 +08:00
|
|
|
|
2019-11-05 21:26:39 +08:00
|
|
|
# Define custom log format to include reponse times
|
2019-11-05 20:36:53 +08:00
|
|
|
log_format main_timed '$remote_addr - $remote_user [$time_local] "$request" '
|
|
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
|
|
'"$http_user_agent" "$http_x_forwarded_for" '
|
|
|
|
'$request_time $upstream_response_time $pipe $upstream_cache_status';
|
2016-03-16 21:54:20 +08:00
|
|
|
|
|
|
|
access_log /dev/stdout main_timed;
|
2017-09-09 15:26:05 +08:00
|
|
|
error_log /dev/stderr notice;
|
2016-03-16 21:54:20 +08:00
|
|
|
|
2019-11-05 20:36:53 +08:00
|
|
|
keepalive_timeout 65;
|
2016-03-16 20:34:24 +08:00
|
|
|
|
2019-11-05 21:24:16 +08:00
|
|
|
# Write temporary files to /tmp so they can be created as a non-privileged user
|
|
|
|
client_body_temp_path /tmp/client_temp;
|
|
|
|
proxy_temp_path /tmp/proxy_temp_path;
|
|
|
|
fastcgi_temp_path /tmp/fastcgi_temp;
|
|
|
|
uwsgi_temp_path /tmp/uwsgi_temp;
|
|
|
|
scgi_temp_path /tmp/scgi_temp;
|
|
|
|
|
|
|
|
# Default server definition
|
2016-03-16 20:34:24 +08:00
|
|
|
server {
|
2019-01-26 20:54:53 +08:00
|
|
|
listen [::]:8080 default_server;
|
|
|
|
listen 8080 default_server;
|
2016-03-16 20:34:24 +08:00
|
|
|
server_name _;
|
|
|
|
|
|
|
|
sendfile off;
|
|
|
|
|
|
|
|
root /var/www/html;
|
|
|
|
index index.php index.html;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
# First attempt to serve request as file, then
|
|
|
|
# as directory, then fall back to index.php
|
|
|
|
try_files $uri $uri/ /index.php?q=$uri&$args;
|
|
|
|
}
|
|
|
|
|
2019-11-05 20:36:53 +08:00
|
|
|
# Redirect server error pages to the static page /50x.html
|
2016-03-16 20:34:24 +08:00
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
|
|
location = /50x.html {
|
2016-07-31 16:20:31 +08:00
|
|
|
root /var/lib/nginx/html;
|
2016-03-16 20:34:24 +08:00
|
|
|
}
|
|
|
|
|
2019-11-05 20:36:53 +08:00
|
|
|
# Pass the PHP scripts to PHP-FPM listening on 127.0.0.1:9000
|
2016-03-16 20:34:24 +08:00
|
|
|
location ~ \.php$ {
|
|
|
|
try_files $uri =404;
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
2019-11-05 20:36:53 +08:00
|
|
|
fastcgi_pass 127.0.0.1:9000;
|
2016-03-16 20:34:24 +08:00
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
|
|
|
|
expires 5d;
|
|
|
|
}
|
|
|
|
|
2019-11-05 20:36:53 +08:00
|
|
|
# Deny access to . files, for security
|
2016-03-16 20:34:24 +08:00
|
|
|
location ~ /\. {
|
|
|
|
log_not_found off;
|
|
|
|
deny all;
|
|
|
|
}
|
2019-02-05 18:27:05 +08:00
|
|
|
|
2019-11-05 20:36:53 +08:00
|
|
|
# Allow fpm ping and status from localhost
|
2019-02-05 18:27:05 +08:00
|
|
|
location ~ ^/(fpm-status|fpm-ping)$ {
|
|
|
|
access_log off;
|
|
|
|
allow 127.0.0.1;
|
|
|
|
deny all;
|
2019-02-06 04:25:40 +08:00
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
2019-02-05 18:27:05 +08:00
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
|
|
}
|
2016-02-24 19:29:53 +08:00
|
|
|
}
|
2020-04-22 14:51:52 +08:00
|
|
|
|
|
|
|
gzip on;
|
|
|
|
gzip_proxied any;
|
|
|
|
gzip_types text/plain application/xml text/css text/js text/xml application/x-javascript text/javascript application/json application/xml+rss;
|
|
|
|
gzip_vary on;
|
|
|
|
gzip_disable "msie6";
|
|
|
|
|
2019-11-05 21:26:39 +08:00
|
|
|
# Include other server configs
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
2016-02-16 01:20:56 +08:00
|
|
|
}
|