mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-23 00:23:25 +01:00
14 lines
382 B
Bash
Executable File
14 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FILE=/usr/local/tomcat/webapps/demo/bbb_api_conf.jsp
|
|
echo -n "<%" > $FILE
|
|
echo "!
|
|
// This is the security salt that must match the value set in the BigBlueButton server
|
|
String salt = \"$SHARED_SECRET\";
|
|
|
|
// This is the URL for the BigBlueButton server
|
|
String BigBlueButtonURL = \"https://$DOMAIN/bigbluebutton/\";
|
|
%>
|
|
" >> $FILE
|
|
|
|
/usr/local/tomcat/bin/catalina.sh run |