changeset 192:9c5790cbea36

(Finally) added some documentation for mod_admin_web.
author florob@babelmonkeys.de
date Fri, 06 May 2011 18:27:37 +0000
parents c33d7df822ff
children ac9dca526a4e
files mod_admin_web.wiki
diffstat 1 files changed, 30 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_admin_web.wiki	Fri May 06 18:27:37 2011 +0000
@@ -0,0 +1,30 @@
+#summary Web administration interface
+#labels Stage-Beta
+= Introduction =
+
+This module provides a very basic web administration interface.
+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.
+
+
+= Installation =
+
+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.
+
+= Configuration Details =
+
+"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.
+By default the interface will then be reachable under `http://example.com:5280/admin`.
+{{{
+Host "example.com"
+   modules_enabled = {
+       .....
+       "admin_web";
+       .....
+   }
+
+   webadmin_http_ports = { 8080 };
+}}}
+
+= Compatibility =
+||0.8||Works||
+||To be 0.9||Works||
\ No newline at end of file