bigbluebutton-Github/build/packages-template/bbb-html5/bigbluebutton.nginx

18 lines
476 B
Plaintext
Raw Normal View History

2021-08-13 18:53:18 +08:00
server {
listen 80;
listen [::]:80;
server_name 192.168.0.103;
access_log /var/log/nginx/bigbluebutton.access.log;
# BigBlueButton assets and static content.
2021-08-13 18:53:18 +08:00
location / {
root /var/www/bigbluebutton-default/assets;
2021-08-13 18:53:18 +08:00
index index.html index.htm;
expires 1m;
}
# Include specific rules for record and playback
include /etc/bigbluebutton/nginx/*.nginx; # an overriding set of files, possibly present
2021-08-13 18:53:18 +08:00
}