89 lines
2.3 KiB
Nginx Configuration File
89 lines
2.3 KiB
Nginx Configuration File
|
load_module modules/ngx_http_headers_more_filter_module.so;
|
||
|
|
||
|
user nginx;
|
||
|
worker_processes auto;
|
||
|
pid /var/run/nginx.pid;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
|
||
|
include mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
|
||
|
sendfile on;
|
||
|
tcp_nopush on;
|
||
|
tcp_nodelay on;
|
||
|
keepalive_timeout 65;
|
||
|
server_tokens off;
|
||
|
|
||
|
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';
|
||
|
|
||
|
#access_log off;
|
||
|
#error_log /dev/stderr;
|
||
|
access_log /dev/stdout main_timed;
|
||
|
error_log /dev/stderr;
|
||
|
|
||
|
server {
|
||
|
listen [::]:80 default_server;
|
||
|
listen 80 default_server;
|
||
|
server_name _;
|
||
|
index index.php;
|
||
|
root /var/www;
|
||
|
client_max_body_size 1G;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ /index.php;
|
||
|
}
|
||
|
|
||
|
location ~ \.php$ {
|
||
|
try_files $uri =404;
|
||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||
|
fastcgi_pass unix:/var/run/php-fpm.sock;
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
fastcgi_index index.php;
|
||
|
include fastcgi_params;
|
||
|
}
|
||
|
|
||
|
location ~* ^.+\.(log|sqlite|yml|yaml|ini)$ {
|
||
|
return 404;
|
||
|
}
|
||
|
|
||
|
location ~ /\.ht {
|
||
|
return 404;
|
||
|
}
|
||
|
|
||
|
location ~* ^.+\.(ico|jpg|gif|png|css|js|svg|eot|ttf|woff|woff2|otf)$ {
|
||
|
log_not_found off;
|
||
|
expires 7d;
|
||
|
etag on;
|
||
|
}
|
||
|
|
||
|
gzip on;
|
||
|
gzip_comp_level 3;
|
||
|
gzip_disable "msie6";
|
||
|
gzip_vary on;
|
||
|
gzip_types
|
||
|
text/plain
|
||
|
text/css
|
||
|
text/javascript
|
||
|
text/xml
|
||
|
application/javascript
|
||
|
application/json
|
||
|
application/xml
|
||
|
application/rss+xml;
|
||
|
}
|
||
|
|
||
|
add_header X-Frame-Options SAMEORIGIN;
|
||
|
add_header X-Content-Type-Options nosniff;
|
||
|
add_header X-XSS-Protection "1; mode=block";
|
||
|
|
||
|
more_clear_headers 'X-Powered-By';
|
||
|
more_clear_headers 'Server';
|
||
|
}
|