48 lines
829 B
Lua
48 lines
829 B
Lua
daemonize = false
|
|
admins = { }
|
|
modules_enabled = {
|
|
"roster";
|
|
"saslauth";
|
|
"tls";
|
|
"dialback";
|
|
"disco";
|
|
"carbons";
|
|
"pep";
|
|
"private";
|
|
"blocklist";
|
|
"vcard4";
|
|
"vcard_legacy";
|
|
"limits";
|
|
"version";
|
|
"uptime";
|
|
"time";
|
|
"ping";
|
|
"register";
|
|
"admin_adhoc";
|
|
"admin_shell";
|
|
}
|
|
modules_disabled = { }
|
|
allow_registration = false
|
|
c2s_require_encryption = true
|
|
s2s_require_encryption = true
|
|
s2s_secure_auth = false
|
|
limits = {
|
|
c2s = {
|
|
rate = "10kb/s";
|
|
};
|
|
s2sin = {
|
|
rate = "30kb/s";
|
|
};
|
|
}
|
|
pidfile = "/var/run/prosody/prosody.pid"
|
|
authentication = "internal_hashed"
|
|
archive_expires_after = "1w"
|
|
log = {
|
|
{levels = {min = "info"}, to = "console"};
|
|
}
|
|
certificates = "certs"
|
|
http_external_url = "https://xmpp.rishighan.com/"
|
|
http_interfaces = { "*" }
|
|
VirtualHost "localhost"
|
|
Include "conf.d/*.cfg.lua"
|