view mod_admin_web.wiki @ 295:57e98a9eadb1

add page
author Kim Alvefur <zash@zash.se>
date Wed, 01 Aug 2012 16:13:37 +0200
parents 0541b8aba1f8
children f50173b0d169
line wrap: on
line source

#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 };
}}}

The webadmin_http_ports supports the same syntax and options as [http://prosody.im/doc/setting_up_bosh#configuring mod_bosh], to allow HTTPS for example.

= Compatibility =
||To be 0.9||Works||