diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-01-07 04:32:27 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-01-07 04:32:27 +0000 |
commit | 0b78691f9e8ee178e2d68cc16c0c7db9c0b80d81 (patch) | |
tree | 95e70c9cdcfaab38f540301ea54dc29958c18909 | |
parent | 909cdebf943ad24ce00d5d50e630994ba08a47ec (diff) | |
download | prosody-0b78691f9e8ee178e2d68cc16c0c7db9c0b80d81.tar.gz prosody-0b78691f9e8ee178e2d68cc16c0c7db9c0b80d81.zip |
prosody.cfg.lua.dist: Add note about the require_encryption options
-rw-r--r-- | prosody.cfg.lua.dist | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 75c473a3..ad533104 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -89,7 +89,12 @@ ssl = { certificate = "certs/localhost.cert"; } --- Require encryption on client/server connections? +-- Only allow encrypted streams? Encryption is already used when +-- available. These options will cause Prosody to deny connections that +-- are not encrypted. Note that some servers do not support s2s +-- encryption or have it disabled, including gmail.com and Google Apps +-- domains. + --c2s_require_encryption = false --s2s_require_encryption = false |