afd81d2b00
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@2735 af16638f-c34d-0410-8cfa-b39d5352b314
32 lines
549 B
Nginx Configuration File
32 lines
549 B
Nginx Configuration File
user nginx;
|
|
worker_processes 1;
|
|
|
|
error_log /var/log/nginx/error.log;
|
|
pid /var/run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
|
|
sendfile on;
|
|
#tcp_nopush on;
|
|
|
|
#keepalive_timeout 0;
|
|
keepalive_timeout 65;
|
|
tcp_nodelay on;
|
|
|
|
gzip on;
|
|
server_names_hash_bucket_size 64;
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
|
include /etc/nginx/sites-enabled/*;
|
|
}
|
|
|
|
|