2

我只是按照此处的“快速入门”说明进行操作:

https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker

然后做了以下更改:

diff --git a/.env b/.env
index 6216b49..4e5e235 100644
--- a/.env
+++ b/.env
@@ -10,22 +10,22 @@
 #
 
 # XMPP component password for Jicofo
-JICOFO_COMPONENT_SECRET=
+JICOFO_COMPONENT_SECRET=633e7a05fe12956618dac1d41ce8c1d1
 
 # XMPP password for Jicofo client connections
-JICOFO_AUTH_PASSWORD=
+JICOFO_AUTH_PASSWORD=8d17f2200b8110a8dd67a8a9fb30f197
 
 # XMPP password for JVB client connections
-JVB_AUTH_PASSWORD=
+JVB_AUTH_PASSWORD=bc78308fa2850a548e842c2d1db3542d
 
 # XMPP password for Jigasi MUC client connections
-JIGASI_XMPP_PASSWORD=
+JIGASI_XMPP_PASSWORD=de411859c3ef5b093bc45c921d59f243
 
 # XMPP recorder password for Jibri client connections
-JIBRI_RECORDER_PASSWORD=
+JIBRI_RECORDER_PASSWORD=a42fdf73c35d978e33fb353cff108df6
 
 # XMPP password for Jibri client connections
-JIBRI_XMPP_PASSWORD=
+JIBRI_XMPP_PASSWORD=564450347551ff8d5a0217e09a6b576d
 
 
 #
@@ -36,16 +36,16 @@ JIBRI_XMPP_PASSWORD=
 CONFIG=~/.jitsi-meet-cfg
 
 # Exposed HTTP port
-HTTP_PORT=8000
+HTTP_PORT=80
 
 # Exposed HTTPS port
-HTTPS_PORT=8443
+HTTPS_PORT=443
 
 # System time zone
 TZ=UTC
 
 # Public URL for the web service (required)
-#PUBLIC_URL=https://meet.example.com
+PUBLIC_URL=https://jitsi.mydummyserver.com
 
 # IP address of the Docker host
 # See the "Running behind NAT or on a LAN environment" section in the Handbook:
@@ -63,16 +63,16 @@ TZ=UTC
 #
 
 # Enable Let's Encrypt certificate generation
-#ENABLE_LETSENCRYPT=1
+ENABLE_LETSENCRYPT=1
 
 # Domain for which to generate the certificate
-#LETSENCRYPT_DOMAIN=meet.example.com
+LETSENCRYPT_DOMAIN=jitsi.mydummyserver.com
 
 # E-Mail for receiving important account notifications (mandatory)
-#LETSENCRYPT_EMAIL=alice@atlanta.net
+LETSENCRYPT_EMAIL=contact@mydummyserver.com
 
 # Use the staging server (for avoiding rate limits while testing)
-#LETSENCRYPT_USE_STAGING=1
+LETSENCRYPT_USE_STAGING=1
 
 
 #
@@ -353,4 +353,4 @@ JIBRI_LOGS_DIR=/config/logs
 RESTART_POLICY=unless-stopped
 
 # Authenticate using external service or just focus external auth window if there is one already.
-# TOKEN_AUTH_URL=https://auth.meet.example.com/{room}
+# TOKEN_AUTH_URL=https://auth.jitsi.mydummyserver.com/{room}
\ No newline at end of file

但我收到错误消息:“您已断开连接”。

在此处输入图像描述

不过,该网站已加载并且 HTTPS 工作正常。

关于发生了什么以及如何解决这个问题的任何想法?

谢谢!

4

3 回答 3

1

我在安装 RedHat 时遇到了与 Jitsi Meet docker 相同的问题。

配置两件事.env解决了我的问题

# Public URL for the web service (required)
PUBLIC_URL=<PUBLIC_URL_WITH_CERTS>

# IP address of the Docker host
# See the "Running behind NAT or on a LAN environment" section in the Handbook:
# https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker#running-behind-nat-or-on-a-lan-environment
DOCKER_HOST_ADDRESS=<YOUR_PRIVATE_IP>

此外,PUBLIC_URL 是Reverse Proxy配置了证书的 URL。

<MY_HOST>:443 --> <DOCKER_HOST>:8443

私有 IP地址,以防您使用类似云的 AWS/Azure/GCP

于 2021-01-20T06:20:03.733 回答
0

我在无限循环中有相同的重新连接消息。使用“stable-5076”对我没有帮助。但是当我在一个字符串中更改 .env-file 时,它​​帮助了我。我取消注释 PUBLIC_URL 字符串并写入安装 jitsi 的计算机的 PRIVATE IP。在此处输入图像描述

于 2021-03-16T14:15:29.847 回答
0

在等待新版本时:

图片:jitsi/{web,prosody,jicofo,jvb}:stable-5076 完美运行。

在使用那里的版本之前,我遇到了和你一样的问题

于 2020-12-31T12:08:17.330 回答