我已经在Jisti Meet
上创建了docker-compose
服务器。参见enter link description here
Docker和Jitsi Meet正在运行。从笔记本电脑上的Ubuntu桌面,我可以打开Firefox和Chrome浏览器以连接到它。甚至同时进行5次会话。
服务器:
客户:
但是,我无法通过Android设备上的Chrome使用Jitsi,只能使用相同的URL来访问Jitse Meet会话。
尝试使用this quick install准则使服务器在NAT后运行。仍然无法连接到Jitsi会议。
还有其他想法吗?
docker deamon.json
{
"debug": true,
"tls": true,
"tlscert": "/var/docker/server.pem",
"tlskey": "/var/docker/serverkey.pem",
"hosts": ["tcp://192.168.1.150:2376"]
}
Jitsi .env文件
#
# Basic configuration options
#
# Directory where all configuration will be stored
CONFIG=~/.jitsi-meet-cfg
# Exposed HTTP port
HTTP_PORT=8000
# Exposed HTTPS port
HTTPS_PORT=8443
# System time zone
TZ=Europe/Amsterdam
# Public URL for the web service
#PUBLIC_URL=https://meet.example.com
PUBLIC_URL="https://192.168.1.150"
# IP address of the Docker host
# See the "Running behind NAT or on a LAN environment" section in the README
DOCKER_HOST_ADDRESS=192.168.1.150