mirror of
https://github.com/SaraSmiseth/prosody.git
synced 2025-05-04 05:00:39 +00:00
initial commit
This commit is contained in:
commit
16e9418632
12 changed files with 402 additions and 0 deletions
21
prosody.cfg.lua
Normal file
21
prosody.cfg.lua
Normal file
|
@ -0,0 +1,21 @@
|
|||
-- see example config at https://hg.prosody.im/0.9/file/0.9.10/prosody.cfg.lua.dist
|
||||
-- easily extendable by putting into different config files within conf.d folder
|
||||
|
||||
admins = {};
|
||||
|
||||
use_libevent = true; -- improves performance
|
||||
|
||||
allow_registration = true;
|
||||
|
||||
c2s_require_encryption = true;
|
||||
s2s_secure_auth = true;
|
||||
|
||||
authentication = "internal_hashed";
|
||||
|
||||
daemonize = false;
|
||||
|
||||
log = {
|
||||
{levels = {min = "info"}, to = "console"};
|
||||
};
|
||||
|
||||
Include "conf.d/*.cfg.lua";
|
Loading…
Add table
Add a link
Reference in a new issue