You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
485 B
Nginx Configuration File
30 lines
485 B
Nginx Configuration File
8 years ago
|
worker_processes 1;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
|
||
|
http {
|
||
|
include mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
|
||
|
sendfile on;
|
||
|
tcp_nopush on;
|
||
|
tcp_nodelay on;
|
||
|
keepalive_timeout 65;
|
||
|
|
||
|
access_log off;
|
||
|
error_log /var/log/nginx/error.log;
|
||
|
|
||
|
#gzip on;
|
||
|
gzip off;
|
||
|
gzip_disable "msie6";
|
||
|
|
||
|
charset UTF-8;
|
||
|
|
||
|
# Virtual Host Config
|
||
|
include /etc/nginx/conf.d/*.conf;
|
||
|
include /etc/nginx/sites-enabled/*;
|
||
|
}
|