blob: 163416472311fbb01d4032cae43fc74384625062 (
plain)
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
|
worker_processes 4;
pid /tmp/nginx.pid;
error_log /proc/self/fd/2 warn;
events {
worker_connections 768;
# multi_accept on;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
#client_body_temp_path /tmp/nginx/temp;
#proxy_temp_path /tmp/nginx/proxy;
access_log /proc/self/fd/1;
error_log /proc/self/fd/2;
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
|