From 4b091b250d4e63f725b71218ddd2c87594295de0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 17 Oct 2018 12:10:02 +0200 Subject: [PATCH] misc: remove unneeded env variable Set it directly in the compose file, since it depends on the XMPP server's hostname. --- README.md | 1 - docker-compose.yml | 2 +- env.example | 3 --- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index e150850..0c20cf3 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,6 @@ Variable | Description | Default value --- | --- | --- `XMPP_DOMAIN` | Internal XMPP domain | meet.jitsi `XMPP_AUTH_DOMAIN` | Internal XMPP domain for authenticated services | auth.meet.jitsi -`XMPP_BOSH_URL_BASE` | Base URL for XMPP BOSH connections | http://xmpp.meet.jitsi:5280 `XMPP_MUC_DOMAIN` | XMPP domain for the MUC | muc.meet.jitsi `XMPP_INTERNAL_MUC_DOMAIN` | XMPP domain for the internal MUC | internal-muc.meet.jitsi `JICOFO_COMPONENT_SECRET` | XMPP component password for Jicofo | s3cr37 diff --git a/docker-compose.yml b/docker-compose.yml index a28445c..76ee055 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,7 @@ services: - JICOFO_AUTH_USER - XMPP_DOMAIN - XMPP_AUTH_DOMAIN - - XMPP_BOSH_URL_BASE + - XMPP_BOSH_URL_BASE=http://xmpp.meet.jitsi:5280 - XMPP_MUC_DOMAIN - TZ networks: diff --git a/env.example b/env.example index c0cb6ca..903a5bf 100644 --- a/env.example +++ b/env.example @@ -43,9 +43,6 @@ XMPP_DOMAIN=meet.jitsi # Internal XMPP domain for authenticated services. XMPP_AUTH_DOMAIN=auth.meet.jitsi -# XMPP BOSH URL base. -XMPP_BOSH_URL_BASE=http://xmpp.meet.jitsi:5280 - # XMPP domain for the MUC. XMPP_MUC_DOMAIN=muc.meet.jitsi