Explicitly set c2s_require_encryption to false

Jitsi Meet doesn't seem to work with c2s_require_encryption set to true.
c2s_require_encryption is false by default. However it is possible that
in some Prosody configurations it is overriden by a global config to be
true. In that case Jitsi Meet might not work out-of-box. So let's set it
explicitly to be sure it is correct.
This commit is contained in:
cmrd Senya 2017-04-16 21:19:47 +03:00
parent f1cbafb097
commit 71da05dc96
3 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,8 @@ VirtualHost "jitmeet.example.com"
"ping"; -- Enable mod_ping "ping"; -- Enable mod_ping
} }
c2s_require_encryption = false
Component "conference.jitmeet.example.com" "muc" Component "conference.jitmeet.example.com" "muc"
--modules_enabled = { "token_verification" } --modules_enabled = { "token_verification" }
admins = { "focusUser@auth.jitmeet.example.com" } admins = { "focusUser@auth.jitmeet.example.com" }

View File

@ -179,6 +179,8 @@ VirtualHost "jitsi.example.com"
certificate = "/var/lib/prosody/jitsi.example.com.crt"; certificate = "/var/lib/prosody/jitsi.example.com.crt";
} }
c2s_require_encryption = false
------ Components ------ ------ Components ------
-- You can specify components to add hosts that provide special services, -- You can specify components to add hosts that provide special services,
-- like multi-user conferences, and transports. -- like multi-user conferences, and transports.

View File

@ -55,6 +55,7 @@ VirtualHost "jitsi.example.com"
"bosh"; "bosh";
"pubsub"; "pubsub";
} }
c2s_require_encryption = false
``` ```
- add domain with authentication for conference focus user: - add domain with authentication for conference focus user:
``` ```