Mercurial > prosody-modules
comparison mod_auth_joomla/README.markdown @ 1803:4d73a1a6ba68
Convert all wiki pages to Markdown
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 28 Aug 2015 18:03:58 +0200 |
parents | mod_auth_joomla/README.wiki@29f3d6b7ad16 |
children |
comparison
equal
deleted
inserted
replaced
1802:0ab737feada6 | 1803:4d73a1a6ba68 |
---|---|
1 --- | |
2 labels: | |
3 - 'Stage-Alpha' | |
4 - 'Type-Auth' | |
5 summary: Joomla authentication module | |
6 ... | |
7 | |
8 Introduction | |
9 ============ | |
10 | |
11 This module allows you to authenticate against an Joomla database. | |
12 | |
13 Configuration | |
14 ============= | |
15 | |
16 SQL connection paramaters are identical to those of [SQL | |
17 storage](https://prosody.im/doc/modules/mod_storage_sql) except for an | |
18 additional 'prefix' parameter that defaults to 'jos\_'.\_ | |
19 | |
20 authentication = "joomla" | |
21 sql = { -- See documentation for SQL storage | |
22 driver = "MySQL"; | |
23 database = "joomla"; | |
24 host = "localhost"; | |
25 username = "prosody"; | |
26 password = "secretpassword"; | |
27 | |
28 prefix = "jos_"; | |
29 } | |
30 | |
31 Compatibility | |
32 ============= | |
33 | |
34 Prosody 0.8+ |