-
Notifications
You must be signed in to change notification settings - Fork 9
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
Configure Jitsi Meet to run behind hardware nat firewall #7
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work @fabiogermann! Thanks for sharing these improvements.
Before merging this PR, could you add the indicated spaces and update the defaults/vars
in README.md with your changes?
@@ -250,7 +250,7 @@ var config = { | |||
// minParticipants: 2, | |||
|
|||
// Use XEP-0215 to fetch STUN and TURN servers. | |||
useStunTurn: {{ jitsi_meet_use_stun_turn }}, | |||
useStunTurn: {{ jitsi_meet_use_stun_turn | to_json}}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here it would be useful add a space before closing the mustaches to make the Ansible lint happy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would suggest | bool | lower
instead of | to_json
|
||
// Use XEP-0215 to fetch STUN and TURN servers. | ||
useStunTurn: {{ jitsi_meet_use_stun_turn }}, | ||
useStunTurn: {{ jitsi_meet_use_stun_turn | to_json}}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here it would be useful add a space before closing the mustaches to make the Ansible lint happy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use | bool | lower instead of to_json
@@ -350,10 +350,10 @@ var config = { | |||
// through the JVB and use the peer to peer connection instead. When a | |||
// 3rd participant joins the conference will be moved back to the JVB | |||
// connection. | |||
enabled: true, | |||
enabled: {{ jitsi_meet_enable_p2p_mode | to_json }}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see above
I added some improvements and configuration options that are needed to set up jitsi meet behind a hardware firewall with NAT enabled.