mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http: Update to disable peer verification with the new certmanager
This commit is contained in:
parent
5d015f7fb0
commit
b9350a6264
1 changed files with 7 additions and 1 deletions
|
@ -142,7 +142,13 @@ module:provides("net", {
|
|||
listener = server.listener;
|
||||
default_port = 5281;
|
||||
encryption = "ssl";
|
||||
ssl_config = { verify = "none" };
|
||||
ssl_config = {
|
||||
verify = {
|
||||
peer = false,
|
||||
client_once = false,
|
||||
"none",
|
||||
}
|
||||
};
|
||||
multiplex = {
|
||||
pattern = "^[A-Z]";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue