nginx: fix broken bbb-playback location

closes #71
This commit is contained in:
chandi 2021-03-27 18:49:20 +01:00
parent 96182bcc74
commit fe17b8f6eb
2 changed files with 6 additions and 3 deletions

View File

@ -15,9 +15,11 @@
# You should have received a copy of the GNU Lesser General Public License along # You should have received a copy of the GNU Lesser General Public License along
# with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. # with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
# #
location /playback/presentation/2.0/playback.html {
location /playback/presentation { return 301 /playback/presentation/2.3/$arg_meetingId?$query_string;
alias /www/presentation; }
location /playback/presentation/2.3 {
try_files $uri /playback/presentation/2.3/index.html;
} }
location /presentation { location /presentation {

View File

@ -22,6 +22,7 @@ server {
server_name _; server_name _;
access_log /dev/stdout; access_log /dev/stdout;
absolute_redirect off; absolute_redirect off;
root /www/;
# redirect to greenlight # redirect to greenlight
location = / { location = / {