2021-08-13 18:53:18 +08:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
|
|
|
BIGBLUEBUTTON_USER=bigbluebutton
|
|
|
|
|
|
|
|
# set ownership of activity directory
|
2021-08-31 05:50:06 +08:00
|
|
|
chown -R $BIGBLUEBUTTON_USER:$BIGBLUEBUTTON_USER /var/bigbluebutton/learning-dashboard/
|
2021-08-13 18:53:18 +08:00
|
|
|
#
|
2022-03-06 11:51:27 +08:00
|
|
|
# Restart nginx to take advantage of the updates to nginx configuration
|
2021-08-13 18:53:18 +08:00
|
|
|
#
|
|
|
|
reloadService nginx
|
|
|
|
|