logo

overlay

My own overlay for experimentations, use with caution, no support is provided git clone https://hacktivis.me/git/overlay.git

prosody-0.11.7-gentoo.patch (1419B)


  1. --- a/prosody.cfg.lua.dist
  2. +++ b/prosody.cfg.lua.dist
  3. @@ -17,6 +17,15 @@
  4. -- Settings in this section apply to the whole server and are the default settings
  5. -- for any virtual hosts
  6. +-- Prosody will use this user and group for launching the service.
  7. +-- Gentoo uses by default jabber:jabber (uid:gid) for all Jabber related services.
  8. +prosody_user = "jabber"
  9. +prosody_group = "jabber"
  10. +
  11. +-- Prosody will create this pid file after it has been successfully started.
  12. +-- Please don't change that path, as it's being used by the Gentoo init scripts.
  13. +pidfile = "/run/jabber/prosody.pid"
  14. +
  15. -- This is a (by default, empty) list of accounts that are admins
  16. -- for the server. Note that you must create the accounts separately
  17. -- (see https://prosody.im/doc/creating_accounts for info)
  18. @@ -30,7 +39,9 @@
  19. -- Prosody will always look in its source directory for modules, but
  20. -- this option allows you to specify additional locations where Prosody
  21. -- will look for modules first. For community modules, see https://modules.prosody.im/
  22. ---plugin_paths = {}
  23. +-- The default included path is for the optional net-im/prosody-modules package,
  24. +-- which provides additional community maintained modules.
  25. +plugin_paths = { "/usr/GENTOO_LIBDIR/prosody/community-modules" };
  26. -- This is the list of modules Prosody will load on startup.
  27. -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too.