diff options
author | Matthew Wild <mwild1@gmail.com> | 2022-03-02 14:27:05 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2022-03-02 14:27:05 +0000 |
commit | eda989030aee68514bac22b6ccefa5801a847246 (patch) | |
tree | d6e55f309e57e1e280682ea5805662d4e05018e9 | |
parent | 1990010e21321f2df3720aeae5aac56480fd13e8 (diff) | |
download | prosody-eda989030aee68514bac22b6ccefa5801a847246.tar.gz prosody-eda989030aee68514bac22b6ccefa5801a847246.zip |
prosody.cfg.lua.dist: Reword plugin_paths to de-emphasize Prosody's source dir
The previous wording may contribute to people trying to install custom modules
to Prosody's source directory instead of adding to plugin_paths.
-rw-r--r-- | prosody.cfg.lua.dist | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index cb4718a3..8a6bac59 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -23,9 +23,8 @@ -- Example: admins = { "user1@example.com", "user2@example.net" } admins = { } --- Prosody will always look in its source directory for modules, but --- this option allows you to specify additional locations where Prosody --- will look for modules first. For community modules, see https://modules.prosody.im/ +-- You can use this option allows you to specify additional locations where Prosody +-- will first look for modules. For community modules, see https://modules.prosody.im/ --plugin_paths = {} -- This is the list of modules Prosody will load on startup. |