浏览代码

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.
j8
cmrd Senya 8 年前
父节点
当前提交
71da05dc96

+ 2
- 0
doc/debian/jitsi-meet-prosody/prosody.cfg.lua-jvb.example 查看文件

23
             "ping"; -- Enable mod_ping
23
             "ping"; -- Enable mod_ping
24
         }
24
         }
25
 
25
 
26
+        c2s_require_encryption = false
27
+
26
 Component "conference.jitmeet.example.com" "muc"
28
 Component "conference.jitmeet.example.com" "muc"
27
     --modules_enabled = { "token_verification" }
29
     --modules_enabled = { "token_verification" }
28
 admins = { "focusUser@auth.jitmeet.example.com" }
30
 admins = { "focusUser@auth.jitmeet.example.com" }

+ 2
- 0
doc/example-config-files/prosody.cfg.lua.example 查看文件

179
 		certificate = "/var/lib/prosody/jitsi.example.com.crt";
179
 		certificate = "/var/lib/prosody/jitsi.example.com.crt";
180
 	}
180
 	}
181
 
181
 
182
+	c2s_require_encryption = false
183
+
182
 ------ Components ------
184
 ------ Components ------
183
 -- You can specify components to add hosts that provide special services,
185
 -- You can specify components to add hosts that provide special services,
184
 -- like multi-user conferences, and transports.
186
 -- like multi-user conferences, and transports.

+ 1
- 0
doc/manual-install.md 查看文件

55
         "bosh";
55
         "bosh";
56
         "pubsub";
56
         "pubsub";
57
     }
57
     }
58
+    c2s_require_encryption = false
58
 ```
59
 ```
59
 - add domain with authentication for conference focus user:
60
 - add domain with authentication for conference focus user:
60
 ```
61
 ```

正在加载...
取消
保存