diff options
author | Matthew Wild <mwild1@gmail.com> | 2022-02-14 15:58:08 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2022-02-14 15:58:08 +0000 |
commit | ecf01c937d3fd7289a53bdba402e00a36a1c10c0 (patch) | |
tree | a014cf95fe1e44d9020bc2af6f6e2f91a305f84c | |
parent | 406b90d31deb1578a545401e0be190d11f2f6aba (diff) | |
download | prosody-ecf01c937d3fd7289a53bdba402e00a36a1c10c0.tar.gz prosody-ecf01c937d3fd7289a53bdba402e00a36a1c10c0.zip |
prosody.cfg.lua.dist: Remove require_encryption options
Reasons:
- These now default to enabled when not specified since 38b5b05407be
- Practically all servers require encryption these days for c2s/s2s.
- Disabling encryption can be considered a special case that doesn't
need to be in the default config file.
-rw-r--r-- | prosody.cfg.lua.dist | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 0d6c2ef4..54426d6f 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -105,16 +105,6 @@ modules_disabled = { -- For more information see https://prosody.im/doc/creating_accounts allow_registration = false --- Force clients to use encrypted connections? This option will --- prevent clients from authenticating unless they are using encryption. - -c2s_require_encryption = true - --- Force servers to use encrypted connections? This option will --- prevent servers from authenticating unless they are using encryption. - -s2s_require_encryption = true - -- Force certificate authentication for server-to-server connections? s2s_secure_auth = false |