Comparison

prosody.cfg.lua.dist @ 10434:8f709577fe8e

Merge 0.11->trunk
author Kim Alvefur <zash@zash.se>
date Sat, 23 Nov 2019 23:12:01 +0100
parent 10422:cb6c0a5f9367
child 11560:3bbb1af92514
comparison
equal deleted inserted replaced
10433:7777f25d5266 10434:8f709577fe8e
29 29
30 -- Prosody will always look in its source directory for modules, but 30 -- Prosody will always look in its source directory for modules, but
31 -- this option allows you to specify additional locations where Prosody 31 -- this option allows you to specify additional locations where Prosody
32 -- will look for modules first. For community modules, see https://modules.prosody.im/ 32 -- will look for modules first. For community modules, see https://modules.prosody.im/
33 --plugin_paths = {} 33 --plugin_paths = {}
34
35 -- Single directory for custom prosody plugins and/or Lua libraries installation
36 -- This path takes priority over plugin_paths, when prosody is searching for modules
37 --installer_plugin_path = ""
34 38
35 -- This is the list of modules Prosody will load on startup. 39 -- This is the list of modules Prosody will load on startup.
36 -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too. 40 -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.
37 -- Documentation for bundled modules can be found at: https://prosody.im/doc/modules 41 -- Documentation for bundled modules can be found at: https://prosody.im/doc/modules
38 modules_enabled = { 42 modules_enabled = {
86 -- to disable them then uncomment them here: 90 -- to disable them then uncomment them here:
87 modules_disabled = { 91 modules_disabled = {
88 -- "offline"; -- Store offline messages 92 -- "offline"; -- Store offline messages
89 -- "c2s"; -- Handle client connections 93 -- "c2s"; -- Handle client connections
90 -- "s2s"; -- Handle server-to-server connections 94 -- "s2s"; -- Handle server-to-server connections
91 -- "posix"; -- POSIX functionality, sends server to background, enables syslog, etc. 95 -- "posix"; -- POSIX functionality, sends server to background, etc.
92 } 96 }
93 97
94 -- Disable account creation by default, for security 98 -- Disable account creation by default, for security
95 -- For more information see https://prosody.im/doc/creating_accounts 99 -- For more information see https://prosody.im/doc/creating_accounts
96 allow_registration = false 100 allow_registration = false