comparison mod_reload_modules/README.wiki @ 1782:29f3d6b7ad16

Import wiki pages
author Kim Alvefur <zash@zash.se>
date Mon, 24 Aug 2015 16:43:56 +0200
parents
children
comparison
equal deleted inserted replaced
1781:12ac88940fe3 1782:29f3d6b7ad16
1 #summary Automatically reload modules with the config
2 #labels Stage-Stable
3
4 = Introduction =
5
6 By default Prosody does not reload modules at runtime unless instructed to via one of its admin interfaces. However sometimes you want to easily reload a module to apply new settings when the config changes.
7
8 mod_reload_modules will reload a set list of modules every time Prosody reloads its config (e.g. on SIGHUP).
9
10 = Configuration =
11
12 Add "reload_modules" to modules_enabled. Then the list of modules to reload using the 'reload_modules' option in your config like so:
13
14 {{{
15 reload_modules = { "groups", "tls" }
16 }}}
17
18 This would reload mod_groups and mod_tls whenever the config is reloaded. Note that on many systems this will be at least daily, due to logrotate.
19
20 = Compatibility =
21 || 0.9 || Works ||