Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions bbb-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1680,6 +1680,13 @@ fi
yq e -i '.mediasoup.plainRtp.listenIp.ip = "0.0.0.0"' $TARGET
yq e -i ".mediasoup.plainRtp.listenIp.announcedIp = \"$IP\"" $TARGET

# nginx package enables default website which collides with bigbluebutton config
# check if the default website is enabled (symlink present) parallel to bigbluebutton
# being enabled and if so, remove the symlink | fixes https://github.com/bigbluebutton/bbb-install/issues/780
DEFAULT_SITE=/etc/nginx/sites-enabled/default
BBB_SITE=/etc/nginx/sites-enabled/bigbluebutton
[ -L $DEFAULT_SITE ] && [ -L $BBB_SITE ] && rm $DEFAULT_SITE

systemctl reload nginx
}

Expand Down