46 lines
1.2 KiB
Nginx Configuration File
46 lines
1.2 KiB
Nginx Configuration File
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name 192.168.0.103;
|
|
|
|
access_log /var/log/nginx/bigbluebutton.access.log;
|
|
|
|
# Handle RTMPT (RTMP Tunneling). Forwards requests
|
|
# to Red5 on port 5080
|
|
location ~ (/open/|/close/|/idle/|/send/|/fcs/) {
|
|
proxy_pass http://127.0.0.1:5080;
|
|
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;
|
|
keepalive_requests 1000000000;
|
|
}
|
|
|
|
# BigBlueButton landing page.
|
|
location / {
|
|
root /var/www/bigbluebutton-default;
|
|
index index.html index.htm;
|
|
expires 1m;
|
|
}
|
|
|
|
# Include specific rules for record and playback
|
|
include /etc/bigbluebutton/nginx/*.nginx;
|
|
|
|
#error_page 404 /404.html;
|
|
|
|
# Redirect server error pages to the static page /50x.html
|
|
#
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /var/www/nginx-default;
|
|
}
|
|
}
|
|
|