18 lines
476 B
Nginx Configuration File
18 lines
476 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name 192.168.0.103;
|
|
|
|
access_log /var/log/nginx/bigbluebutton.access.log;
|
|
|
|
# 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
|
|
}
|