87 lines
1.3 KiB
Nginx Configuration File
87 lines
1.3 KiB
Nginx Configuration File
|
|
||
|
|
||
|
http {
|
||
|
|
||
|
|
||
|
root @{nginx}/store;
|
||
|
|
||
|
index index.html index.txt;
|
||
|
autoindex off;
|
||
|
include /dev/null;
|
||
|
default_type application/octet-stream;
|
||
|
|
||
|
gzip off;
|
||
|
gzip_buffers 128 16k;
|
||
|
gzip_comp_level 9;
|
||
|
gzip_min_length 0;
|
||
|
gzip_proxied any;
|
||
|
gzip_types *;
|
||
|
|
||
|
server {
|
||
|
|
||
|
|
||
|
listen 127.0.0.1:8080 default_server bind reuseport backlog=4096;
|
||
|
|
||
|
server_name nginx;
|
||
|
server_name_in_redirect off;
|
||
|
port_in_redirect off;
|
||
|
|
||
|
keepalive_requests 262144;
|
||
|
keepalive_timeout 60s;
|
||
|
|
||
|
tcp_nodelay off;
|
||
|
tcp_nopush off;
|
||
|
|
||
|
sendfile off;
|
||
|
directio off;
|
||
|
aio off;
|
||
|
|
||
|
open_file_cache max=2048 inactive=60s;
|
||
|
open_file_cache_valid 60s;
|
||
|
open_file_cache_min_uses 1;
|
||
|
open_file_cache_errors on;
|
||
|
output_buffers 4 128k;
|
||
|
postpone_output 16k;
|
||
|
read_ahead 1;
|
||
|
|
||
|
|
||
|
location / {
|
||
|
|
||
|
limit_except GET HEAD {
|
||
|
deny all;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
error_log /dev/stderr notice;
|
||
|
access_log off;
|
||
|
log_not_found on;
|
||
|
|
||
|
client_body_temp_path @{nginx}/empty;
|
||
|
proxy_temp_path @{nginx}/empty;
|
||
|
fastcgi_temp_path @{nginx}/empty;
|
||
|
uwsgi_temp_path @{nginx}/empty;
|
||
|
scgi_temp_path @{nginx}/empty;
|
||
|
}
|
||
|
|
||
|
|
||
|
worker_processes 2;
|
||
|
worker_rlimit_nofile 8192;
|
||
|
working_directory @{nginx}/empty;
|
||
|
|
||
|
error_log /dev/stderr notice;
|
||
|
pid @{nginx}/pid;
|
||
|
daemon off;
|
||
|
|
||
|
|
||
|
events {
|
||
|
use epoll;
|
||
|
worker_connections 4224;
|
||
|
accept_mutex off;
|
||
|
multi_accept off;
|
||
|
}
|
||
|
|