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
|
|
|
|
# to Red5 on port 8088.
|
2010-01-20 05:22:28 +08:00
|
|
|
location ~ (/open/|/close/|/idle/|/send/) {
|
|
|
|
proxy_pass http://127.0.0.1:8088;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
# Handle request to bbb-web running within Tomcat. This is for
|
|
|
|
# the BBB-API and Presentation.
|
2010-01-20 05:22:28 +08:00
|
|
|
location /bigbluebutton {
|
|
|
|
proxy_pass http://127.0.0.1:8080;
|
|
|
|
proxy_redirect default;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
2010-01-25 03:37:51 +08:00
|
|
|
# Allow 30M uploaded presentation document.
|
2010-01-20 05:41:13 +08:00
|
|
|
client_max_body_size 30m;
|
2010-01-20 05:22:28 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-01-25 03:37:51 +08:00
|
|
|
# BigBlueButton Flash client.
|
2010-01-20 05:22:28 +08:00
|
|
|
location /client {
|
|
|
|
root /var/www/bigbluebutton;
|
|
|
|
index index.html index.htm;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|