diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-10 16:38:35 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-10 16:38:35 +0100 |
commit | e8bbf87b3dac657c4e4af5ff1459047fa2f1a268 (patch) | |
tree | cc71a891ec5288bfe5d65cb6c9e897d264269ea2 /prosody.cfg.lua.dist | |
parent | d51286cbf6bbba6ff29f756a8abd95ea8e2f891b (diff) | |
download | prosody-e8bbf87b3dac657c4e4af5ff1459047fa2f1a268.tar.gz prosody-e8bbf87b3dac657c4e4af5ff1459047fa2f1a268.zip |
prosody.cfg.lua.dist: Add auto-loaded modules to the config
Diffstat (limited to 'prosody.cfg.lua.dist')
-rw-r--r-- | prosody.cfg.lua.dist | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 8e12f922..51ea3b3d 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -62,6 +62,15 @@ Host "*" --"httpserver"; -- Serve static files from a directory over HTTP
};
+ -- These modules are auto-loaded, should you
+ -- for (for some mad reason) want to disable
+ -- them then uncomment them below
+ modules_disabled = {
+ -- "presence";
+ -- "message";
+ -- "iq";
+ };
+
-- Disable account creation by default, for security
-- For more information see http://prosody.im/doc/creating_accounts
allow_registration = false;
|