-
Notifications
You must be signed in to change notification settings - Fork 5
/
nginx.conf
40 lines (33 loc) · 1.03 KB
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
user nginx;
worker_processes auto;
events {
worker_connections 5120;
multi_accept on;
use epoll;
}
worker_rlimit_nofile 10240;
http {
include /etc/nginx/conf.d/*.conf;
include mime.types;
default_type application/octet-stream;
proxy_intercept_errors off;
server_tokens off;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
reset_timedout_connection on;
send_timeout 2;
client_body_timeout 2;
client_header_timeout 2;
client_body_buffer_size 8K;
client_header_buffer_size 2k;
client_max_body_size 2m;
large_client_header_buffers 16 16k;
keepalive_timeout 15;
gzip on;
gzip_comp_level 6;
gzip_http_version 1.0;
gzip_types text/plain text/css application/x-javascript application/javascript application/json text/xml application/xml application/xml+rss text/javascript;
gzip_proxied any;
gzip_disable "msie6";
}