summaryrefslogtreecommitdiff
path: root/files/prosody.cfg.lua
diff options
context:
space:
mode:
authorMatthew Fennell <matthew@fennell.dev>2024-02-05 11:58:12 +0000
committerMatthew Fennell <matthew@fennell.dev>2024-02-05 11:58:12 +0000
commit09c5bd818ded489378104f523fcede23443c5092 (patch)
treeb862fcaa383e165a1f3e995ad4625f55845e3bc8 /files/prosody.cfg.lua
parent58ce069ae98a74ec95db89e8dda6e1ff188c3b77 (diff)
Bulk update with all changes currently in prod
Diffstat (limited to 'files/prosody.cfg.lua')
-rw-r--r--files/prosody.cfg.lua75
1 files changed, 0 insertions, 75 deletions
diff --git a/files/prosody.cfg.lua b/files/prosody.cfg.lua
deleted file mode 100644
index d75781a..0000000
--- a/files/prosody.cfg.lua
+++ /dev/null
@@ -1,75 +0,0 @@
--- SPDX-FileCopyrightText: 2024 Matthew Fennell <matthew@fennell.dev>
---
--- SPDX-License-Identifier: AGPL-3.0-only
-
-admins = { }
-
-plugin_paths = { "/usr/local/lib/prosody/modules" }
-
-modules_enabled = {
- "admin_adhoc";
- "admin_shell";
- "blocklist";
- "bookmarks";
- "carbons";
- "cloud_notify";
- "csi_battery_saver";
- "dialback";
- "disco";
- "external_services";
- "invites";
- "invites_adhoc";
- "invites_register";
- "limits";
- "mam";
- "mimicking";
- "pep";
- "ping";
- "posix";
- "private";
- "proxy65";
- "register";
- "roster";
- "saslauth";
- "smacks";
- "time";
- "tls";
- "uptime";
- "vcard4";
- "vcard_legacy";
- "version";
-}
-
-modules_disabled = { }
-
-pidfile = "/run/prosody/prosody.pid";
-
-log = {
- info = "/var/log/prosody/prosody.log";
- error = "/var/log/prosody/prosody.err";
- { levels = { "error" }; to = "syslog"; };
-}
-
-s2s_secure_auth = true
-s2s_require_encryption = true
-c2s_require_encryption = true
-authentication = "internal_hashed"
-certificates = "certs"
-
--- From Monal considerations for XMPP server admins
-smacks_hibernation_time = 86400
-
-allow_registration = true
-
-limits = {
- c2s = {
- rate = "10kb/s";
- };
- s2sin = {
- rate = "30kb/s";
- };
-}
-
-archive_expires_after = "10y"
-
-Include "conf.d/*.cfg.lua"