26 lines
604 B
Nginx Configuration File
26 lines
604 B
Nginx Configuration File
|
user http;
|
||
|
worker_processes 4;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
include mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
|
||
|
sendfile on;
|
||
|
tcp_nopush on;
|
||
|
tcp_nodelay on;
|
||
|
gzip on;
|
||
|
gzip_disable "msie6";
|
||
|
keepalive_timeout 65;
|
||
|
types_hash_max_size 2048;
|
||
|
server_names_hash_bucket_size 64;
|
||
|
|
||
|
access_log /var/log/nginx/access.log;
|
||
|
error_log /var/log/nginx/error.log;
|
||
|
|
||
|
include /etc/nginx/sites-enabled/*;
|
||
|
}
|