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

22 lines
645 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;
2021-08-13 18:53:18 +08:00
access_log /var/log/nginx/bigbluebutton.access.log;
2021-08-13 18:53:18 +08:00
# This variable is used instead of $scheme by bigbluebutton nginx include
# files, so $scheme can be overridden in reverse-proxy configurations.
set $real_scheme $scheme;
2021-08-13 18:53:18 +08:00
# BigBlueButton assets and static content.
location / {
root /var/www/bigbluebutton-default/assets;
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
}