mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
core.certmanager: Do not ask for client certificates by default
Since it's mostly only mod_s2s that needs to request client certificates it makes some sense to have mod_s2s ask for this, instead of having eg mod_http ask to disable it.
This commit is contained in:
parent
5fb7d2d35a
commit
9f65ce7189
3 changed files with 4 additions and 4 deletions
|
@ -106,7 +106,7 @@ local core_defaults = {
|
|||
capath = "/etc/ssl/certs";
|
||||
depth = 9;
|
||||
protocol = "tlsv1+";
|
||||
verify = (ssl_x509 and { "peer", "client_once", }) or "none";
|
||||
verify = "none";
|
||||
options = {
|
||||
cipher_server_preference = luasec_has.options.cipher_server_preference;
|
||||
no_ticket = luasec_has.options.no_ticket;
|
||||
|
|
|
@ -228,9 +228,6 @@ module:provides("net", {
|
|||
listener = server.listener;
|
||||
default_port = 5281;
|
||||
encryption = "ssl";
|
||||
ssl_config = {
|
||||
verify = "none";
|
||||
};
|
||||
multiplex = {
|
||||
pattern = "^[A-Z]";
|
||||
};
|
||||
|
|
|
@ -738,6 +738,9 @@ module:provides("net", {
|
|||
listener = listener;
|
||||
default_port = 5269;
|
||||
encryption = "starttls";
|
||||
ssl_config = {
|
||||
verify = { "peer", "client_once", };
|
||||
};
|
||||
multiplex = {
|
||||
pattern = "^<.*:stream.*%sxmlns%s*=%s*(['\"])jabber:server%1.*>";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue