Software / code / prosody
Comparison
prosody.cfg.lua.dist @ 4086:c51737e6b445
prosody.cfg.lua.dist: Add note about the require_encryption options
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 07 Jan 2011 04:32:27 +0000 |
| parent | 4084:680df3c635c6 |
| child | 4087:e239504d8fff |
comparison
equal
deleted
inserted
replaced
| 4085:7699cef04740 | 4086:c51737e6b445 |
|---|---|
| 87 ssl = { | 87 ssl = { |
| 88 key = "certs/localhost.key"; | 88 key = "certs/localhost.key"; |
| 89 certificate = "certs/localhost.cert"; | 89 certificate = "certs/localhost.cert"; |
| 90 } | 90 } |
| 91 | 91 |
| 92 -- Require encryption on client/server connections? | 92 -- Only allow encrypted streams? Encryption is already used when |
| 93 -- available. These options will cause Prosody to deny connections that | |
| 94 -- are not encrypted. Note that some servers do not support s2s | |
| 95 -- encryption or have it disabled, including gmail.com and Google Apps | |
| 96 -- domains. | |
| 97 | |
| 93 --c2s_require_encryption = false | 98 --c2s_require_encryption = false |
| 94 --s2s_require_encryption = false | 99 --s2s_require_encryption = false |
| 95 | 100 |
| 96 -- Logging configuration | 101 -- Logging configuration |
| 97 -- For advanced logging see http://prosody.im/doc/logging | 102 -- For advanced logging see http://prosody.im/doc/logging |