bigbluebutton-Github/build/packages-template/bbb-html5/bigbluebutton.nginx
Pedro Beschorner Marin 6d80a413cf refactor(screenshare): FreeSWITCH partial removal
Remove part of the old FreeSWITCH dependent WebRTC screenshare feature.
2022-02-23 13:03:51 -03:00

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;
}