vince06fr / prosody-modules

Automatically exported from code.google.com/p/prosody-modules
MIT License
0 stars 0 forks source link

mod_admin_web don't work with internal_hashed #20

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
How to reproduce:

1. Fresh install of prosody 0.9 (deb repository) with prosody-modules provided 
by hg
2. Setup a simple vhost with mod_admin_http => should works
3. Enable authentication = "internal_hashed" => unable to login

Original issue reported on code.google.com by yannt...@gmail.com on 9 Sep 2012 at 8:44

GoogleCodeExporter commented 8 years ago
The reason for this is likely that you're using the interface over an 
unencrypted connection. This means that plaintext authentication is disallowed. 
With the internal_hashed backend plaintext authentication used to be the only 
method supported by both Prosody, and the library used by mod_admin_web 
(strophe.js).
This is no longer the case, I would still strongly suggest using an encrypted 
connection for your administrative tasks (i.e. use the interface via https on 
port 5281, instead of http, on port 5280).

Original comment by flo...@babelmonkeys.de on 10 Jan 2014 at 11:39