comparison mod_admin_web.wiki @ 337:da79793316ff

Since this only works starting with 0.9 remove autoloaded modules from modules_enabled.
author florob@babelmonkeys.de
date Sat, 06 Apr 2013 16:00:30 +0000
parents f50173b0d169
children d3f2060ac16a
comparison
equal deleted inserted replaced
336:b33e70726d6a 337:da79793316ff
7 7
8 = Configuration Details = 8 = Configuration Details =
9 9
10 "admin_web" needs to be added to the modules_enabled table of the host you want to load this module on. 10 "admin_web" needs to be added to the modules_enabled table of the host you want to load this module on.
11 11
12 By default the interface will then be reachable under `http://example.com:5280/admin`, and also `https://example.com:5281/admin`. 12 By default the interface will then be reachable under `http://example.com:5280/admin`, or `https://example.com:5281/admin`.
13 13
14 The module will automatically enable two other modules if they aren't already: mod_bosh (used to connect to the server from the web), and mod_admin_adhoc (which provides admin commands over XMPP). 14 The module will automatically enable two other modules if they aren't already: mod_bosh (used to connect to the server from the web), and mod_admin_adhoc (which provides admin commands over XMPP).
15 15
16 {{{ 16 {{{
17 VirtualHost "example.com" 17 VirtualHost "example.com"
18 modules_enabled = { 18 modules_enabled = {
19 ..... 19 .....
20 "admin_web"; 20 "admin_web";
21 "bosh"; -- Required, auto-loaded in 0.9
22 "admin_adhoc"; -- Required, auto-loaded in 0.9
23 ..... 21 .....
24 } 22 }
25 }}} 23 }}}
26 24
27 = Compatibility = 25 = Compatibility =