mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_s2s: Add a Direct TLS listener
Mirroring the c2s 'direct_tls'. Naming things is hard. direct_tls_s2s_ports = { 5269+1 }
This commit is contained in:
parent
c42a125cc7
commit
702d8a9ab4
3 changed files with 16 additions and 2 deletions
|
@ -967,3 +967,17 @@ module:provides("net", {
|
|||
};
|
||||
});
|
||||
|
||||
|
||||
module:provides("net", {
|
||||
name = "direct_tls_s2s";
|
||||
listener = listener;
|
||||
encryption = "ssl";
|
||||
ssl_config = {
|
||||
verify = { "peer", "client_once", };
|
||||
};
|
||||
multiplex = {
|
||||
protocol = "xmpp-server";
|
||||
pattern = "^<.*:stream.*%sxmlns%s*=%s*(['\"])jabber:server%1.*>";
|
||||
};
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue