Mercurial > prosody-wiki
annotate 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 |
rev | line source |
---|---|
192
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
1 #summary Web administration interface |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
2 #labels Stage-Beta |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
3 = Introduction = |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
4 |
297 | 5 This module provides a basic web administration interface. |
6 It currently gives you access to Ad-Hoc commands on any virtual host or component that you are set as an administrator for in the Prosody config file. It also provides a live list of all S2S and C2S connections. | |
192
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
7 |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
8 = Configuration Details = |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
9 |
297 | 10 "admin_web" needs to be added to the modules_enabled table of the host you want to load this module on. |
11 | |
337
da79793316ff
Since this only works starting with 0.9 remove autoloaded modules from modules_enabled.
florob@babelmonkeys.de
parents:
297
diff
changeset
|
12 By default the interface will then be reachable under `http://example.com:5280/admin`, or `https://example.com:5281/admin`. |
297 | 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). | |
15 | |
192
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
16 {{{ |
297 | 17 VirtualHost "example.com" |
192
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
18 modules_enabled = { |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
19 ..... |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
20 "admin_web"; |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
21 ..... |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
22 } |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
23 }}} |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
24 |
9c5790cbea36
(Finally) added some documentation for mod_admin_web.
florob@babelmonkeys.de
parents:
diff
changeset
|
25 = Compatibility = |
297 | 26 ||trunk||Works|| |
27 ||0.9||Works|| |