Comparison

prosody.cfg.lua.dist @ 4233:3c644c3b10e2

prosody.cfg.lua.dist: Add example of 'authentication' option
author Matthew Wild <mwild1@gmail.com>
date Tue, 05 Apr 2011 12:36:56 +0100
parent 4091:c53610fdab62
child 4497:f42a0833c47c
comparison
equal deleted inserted replaced
4232:582fe508214f 4233:3c644c3b10e2
97 -- domains. 97 -- domains.
98 98
99 --c2s_require_encryption = false 99 --c2s_require_encryption = false
100 --s2s_require_encryption = false 100 --s2s_require_encryption = false
101 101
102 -- Select the authentication backend to use. The 'internal' providers
103 -- use Prosody's configured data storage to store the authentication data.
104 -- To allow Prosody to offer secure authentication mechanisms to clients, the
105 -- default provider stores passwords in plaintext. If you do not trust your
106 -- server please see http://prosody.im/doc/modules/mod_auth_internal_hashed
107 -- for information about using the hashed backend.
108
109 authentication = "internal_plain"
110
102 -- Select the storage backend to use. By default Prosody uses flat files 111 -- Select the storage backend to use. By default Prosody uses flat files
103 -- in its configured data directory, but it also supports more backends 112 -- in its configured data directory, but it also supports more backends
104 -- through modules. An "sql" backend is included by default, but requires 113 -- through modules. An "sql" backend is included by default, but requires
105 -- additional dependencies. See http://prosody.im/doc/storage for more info. 114 -- additional dependencies. See http://prosody.im/doc/storage for more info.
106 115