Browse Source

Disable jitsi meet for now

This nightly repo isn't ideal and looks like it might cause problems
Bob Mottram 8 years ago
parent
commit
d22f699b5a
1 changed files with 7 additions and 2 deletions
  1. 7
    2
      src/freedombone-app-jitsi

+ 7
- 2
src/freedombone-app-jitsi View File

30
 # You should have received a copy of the GNU Affero General Public License
30
 # You should have received a copy of the GNU Affero General Public License
31
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
31
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
32
 
32
 
33
-VARIANTS="full full-vim chat"
33
+VARIANTS=""
34
 
34
 
35
 IN_DEFAULT_INSTALL=0
35
 IN_DEFAULT_INSTALL=0
36
-SHOW_ON_ABOUT=1
36
+SHOW_ON_ABOUT=0
37
 
37
 
38
 VIDEOBRIDGE_PORT=5347
38
 VIDEOBRIDGE_PORT=5347
39
 JITSI_ONION_PORT=8102
39
 JITSI_ONION_PORT=8102
256
     apt-get -yq install jitsi-meet jitsi-meet-prosody
256
     apt-get -yq install jitsi-meet jitsi-meet-prosody
257
 
257
 
258
     jitsi_nginx_site=/etc/nginx/sites-available/${JITSI_DOMAIN_NAME}
258
     jitsi_nginx_site=/etc/nginx/sites-available/${JITSI_DOMAIN_NAME}
259
+
260
+    if [ -f ${jitsi_nginx_site}.conf ]; then
261
+        rm ${jitsi_nginx_site}.conf
262
+    fi
263
+
259
     echo 'server_names_hash_bucket_size 64;' > $jitsi_nginx_site
264
     echo 'server_names_hash_bucket_size 64;' > $jitsi_nginx_site
260
     if [[ $ONION_ONLY == "no" ]]; then
265
     if [[ $ONION_ONLY == "no" ]]; then
261
         echo '' >> $jitsi_nginx_site
266
         echo '' >> $jitsi_nginx_site