Mercurial > prosody-wiki
comparison mod_admin_web.wiki @ 192:9c5790cbea36
(Finally) added some documentation for mod_admin_web.
author | florob@babelmonkeys.de |
---|---|
date | Fri, 06 May 2011 18:27:37 +0000 |
parents | |
children | 140beda24a8c |
comparison
equal
deleted
inserted
replaced
191:c33d7df822ff | 192:9c5790cbea36 |
---|---|
1 #summary Web administration interface | |
2 #labels Stage-Beta | |
3 = Introduction = | |
4 | |
5 This module provides a very basic web administration interface. | |
6 It currently gives you access to Ad-Hoc commands on any virtual host you are administrator for. It also provides a live list of all S2S and C2S connections. | |
7 | |
8 | |
9 = Installation = | |
10 | |
11 Copy the admin_web directory into prosody's plugin directory and execute the contained get_deps.sh script. This will require wget, tar, make and a basic shell. | |
12 | |
13 = Configuration Details = | |
14 | |
15 "admin_web" needs to be added to the modules_enabled table of the host you want to load this module on. The port can optionally be specified with the webadmin_http_ports option. | |
16 By default the interface will then be reachable under `http://example.com:5280/admin`. | |
17 {{{ | |
18 Host "example.com" | |
19 modules_enabled = { | |
20 ..... | |
21 "admin_web"; | |
22 ..... | |
23 } | |
24 | |
25 webadmin_http_ports = { 8080 }; | |
26 }}} | |
27 | |
28 = Compatibility = | |
29 ||0.8||Works|| | |
30 ||To be 0.9||Works|| |