6d80a413cf
Remove part of the old FreeSWITCH dependent WebRTC screenshare feature.
18 lines
409 B
Nginx Configuration File
18 lines
409 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name 192.168.0.103;
|
|
|
|
access_log /var/log/nginx/bigbluebutton.access.log;
|
|
|
|
# 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;
|
|
}
|