Browse Source

Merge pull request #1505 from cmrd-senya/prosody-default-fixup

Explicitly set c2s_require_encryption to false
j8
Дамян Минков 8 years ago
parent
commit
c34e841710

+ 2
- 0
doc/debian/jitsi-meet-prosody/prosody.cfg.lua-jvb.example View File

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 View File

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 View File

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
 ```

Loading…
Cancel
Save