2010-01-20 05:22:28 +08:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
server_name 192.168.0.103;
|
|
|
|
|
|
|
|
access_log /var/log/nginx/bigbluebutton.access.log;
|
|
|
|
|
2010-01-25 03:37:51 +08:00
|
|
|
# Handle RTMPT (RTMP Tunneling). Forwards requests
|
2011-09-24 09:20:05 +08:00
|
|
|
# to Red5 on port 5080
|
2012-09-15 03:32:50 +08:00
|
|
|
location ~ (/open/|/close/|/idle/|/send/|/fcs/) {
|
2011-09-23 04:42:40 +08:00
|
|
|
proxy_pass http://127.0.0.1:5080;
|
2010-01-20 05:22:28 +08:00
|
|
|
proxy_redirect off;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
client_max_body_size 10m;
|
|
|
|
client_body_buffer_size 128k;
|
|
|
|
|
|
|
|
proxy_connect_timeout 90;
|
|
|
|
proxy_send_timeout 90;
|
|
|
|
proxy_read_timeout 90;
|
|
|
|
|
|
|
|
proxy_buffering off;
|
2012-08-30 02:45:37 +08:00
|
|
|
keepalive_requests 1000000000;
|
2010-01-20 05:22:28 +08:00
|
|
|
}
|
|
|
|
|
2010-01-25 03:37:51 +08:00
|
|
|
# Handle desktop sharing tunneling. Forwards
|
|
|
|
# requests to Red5 on port 5080.
|
2010-01-20 05:22:28 +08:00
|
|
|
location /deskshare {
|
|
|
|
proxy_pass http://127.0.0.1:5080;
|
|
|
|
proxy_redirect default;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
client_max_body_size 10m;
|
|
|
|
client_body_buffer_size 128k;
|
|
|
|
proxy_connect_timeout 90;
|
|
|
|
proxy_send_timeout 90;
|
|
|
|
proxy_read_timeout 90;
|
|
|
|
proxy_buffer_size 4k;
|
|
|
|
proxy_buffers 4 32k;
|
|
|
|
proxy_busy_buffers_size 64k;
|
|
|
|
proxy_temp_file_write_size 64k;
|
|
|
|
include fastcgi_params;
|
|
|
|
}
|
|
|
|
|
2010-01-25 03:37:51 +08:00
|
|
|
# BigBlueButton landing page.
|
2010-01-20 05:22:28 +08:00
|
|
|
location / {
|
|
|
|
root /var/www/bigbluebutton-default;
|
|
|
|
index index.html index.htm;
|
2011-11-15 03:26:29 +08:00
|
|
|
expires 1m;
|
2010-01-20 05:22:28 +08:00
|
|
|
}
|
|
|
|
|
2011-06-02 05:49:55 +08:00
|
|
|
# Include specific rules for record and playback
|
2011-12-09 07:10:16 +08:00
|
|
|
include /etc/bigbluebutton/nginx/*.nginx;
|
2011-06-02 05:49:55 +08:00
|
|
|
|
2010-01-20 05:22:28 +08:00
|
|
|
#error_page 404 /404.html;
|
|
|
|
|
2010-01-25 03:37:51 +08:00
|
|
|
# Redirect server error pages to the static page /50x.html
|
2010-01-20 05:22:28 +08:00
|
|
|
#
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
|
|
location = /50x.html {
|
|
|
|
root /var/www/nginx-default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|