mod_muc_webchat_url: Fix default url
[prosody-modules.git] / mod_auth_pam / README.markdown
blobd71c880c7ae9df3098f66c50c6ecec79177b6dba
1 ---
2 labels:
3 - 'Stage-Alpha'
4 - 'Type-Auth'
5 summary: PAM authentication module
6 ---
8 Introduction
9 ============
11 This module makes Prosody authenticate users against PAM (Linux
12 Pluggable Authentication Modules)
14 Dependencies
15 ============
17 The module depends on [lua-pam](https://github.com/devurandom/lua-pam)
18 and [LuaPosix](https://github.com/luaposix/luaposix).
20 Setup
21 =====
23 Create a `/etc/pam.d/xmpp` with something like this:
25     auth    [success=1 default=ignore]  pam_unix.so obscure sha512 nodelay
26     auth    requisite           pam_deny.so
27     auth    required            pam_permit.so
29 And switch authentication provider in the Prosody config:
31     authentication = "pam"
33 Compatibility
34 =============
36 Compatible with 0.9 and up