-
-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to specify hosts hash entries in config.js with properties like org.jitsi.videobridge.ofmeet.hosts.{domain|muc|bridge|focus} #78
base: master
Are you sure you want to change the base?
Conversation
… org.jitsi.videobridge.ofmeet.hosts.{domain|muc|bridge|focus}, fixes igniterealtime#77
Thank you for the contribution There is a system property for the openfire xmpp domain called xmpp.domain. It might be better to use that instead of creating org.jitsi.videobridge.ofmeet.hosts.domain |
As a default, we might want to use the domain name of the first available conference service (which we can lookup), instead of using a hard-coded value. |
@deleolajide In our particular case we would like to still use the default xmpp.domain, but have a different value for the org.jitsi.videobridge.ofmeet.hosts.domain (config.js hosts->domain value) The reasoning behind that is that the XMPP users are: [email protected] But the URL for jitsi will be https://jitsi.domain.com:7443/ofmeet Reasoning is that the ips for each domain are different:
Does this make sense, or is there another way to configure this? |
@guusdk how can we lookup the "conference" and other hardcoded value? |
No. You have confused me. This is my understanding ofmeet url openfire reverse proxy config.js |
Our setupIn our setup the IP of Openfire is not the same as the principal domain, which is used for the company website. That is:
Let me know if I have made myself clearer now, as full example, copying your example above: ofmeet url https://jitsi.domain.com/ofmeet/myconf ** Company website** openfire reverse proxy config.js |
I am not sure that is correct. From my experience, that should be domain.com. It is used for the XMPP jingle signalling which requires an XMPP domain name and not a web server domain name. |
In my case everything worked fin, until I shared the screen, in that case we got black screens. Changing the parameter in the config.js seemed to fix it. But obviously, I have not the view of the full picture, so not sure if this has other effects that I am not foreseeing. So far everything seems to be working by setting the domain in the config.js (crossing fingers) |
… org.jitsi.videobridge.ofmeet.hosts.{domain|muc|bridge|focus}, fixes #77