Use Nginx with ofmeeting

Hello,

If I use Nginx for secure connection, Focus user is not use for create room. So all users are in separated room, and I can’t invite other user (Your conference is currently being created…).

Without Nginx, it works like a charm.

How I can use Nginx ?

Openfire 4.1.0

Openfire Meetings 0.3.28

Thanks

Just add configuration lines in Nginx config.

location /wsapp/ { proxy_pass http://wsbackend; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; }

To adapt (location and proxy_pass) with your configuration !

1 Like

I am very curious. Why use Nginx for secure connections instead of changing Openfire to use 443 instead of 7443 and adding a certificate to Openfire??

If he has another websites running on same sever, he can’t give 443 exclusively to openfire. Also, if he is using letsencrypt, it is easier renew certs and reload nginx with just 1 line in crontab. Openfire uses that keytool stuff to handle certs, that is more complicated I guess.