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;
|
|
|
|
|
2022-07-15 23:11:42 +08:00
|
|
|
# BigBlueButton assets and static content.
|
2021-08-13 18:53:18 +08:00
|
|
|
location / {
|
2022-07-15 23:11:42 +08:00
|
|
|
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
|
2022-03-06 11:51:27 +08:00
|
|
|
include /etc/bigbluebutton/nginx/*.nginx; # an overriding set of files, possibly present
|
2021-08-13 18:53:18 +08:00
|
|
|
}
|