Hi,
With COVID confinement (in France), I try to install Jitsio in my enterprise.
But, only one user can access to meetings, when a second arrive, the first one is disconnected
Jitsi is installed through package on Ubuntu 18.04.
Server is an LXD container, so Jitsi is behind NAT and Reverse Proxy.
I’ve followed, the debamax.comblog post for reverse proxy configuration but with NGINX instead Apache.
Here is my configuration :
server {
listen 443;
server_name visio.my-domain.fr;
ssl_certificate /etc/ssl/certs/my-domain.fr.bundle.crt; # wildcard cert
ssl_certificate_key /etc/ssl/private/my-domain.fr.key;
access_log off;
large_client_header_buffers 4 16k;
proxy_ssl_verify off;
location / {
proxy_pass https://10.1.2.122;
proxy_cache off;
}
}
Reverse proxy is also a LXD container, wich receive all 80/443 traffic and redirect it on other LXD containers depending the domain.
4443 and 10000 port are NATed (throught pfSense)
I changed /etc/jitsi/videobridge/sip-communicator.properties with:
- NAT_HARVESTER_LOCAL_ADDRESS: IP of my Jitsi LXD container, ie 10.1.2.122
- NAT_HARVESTER_PUBLIC_ADDRESS: my public IP
Thanks for your help
Yoann