18 lines
409 B
Plaintext
18 lines
409 B
Plaintext
|
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;
|
||
|
}
|