Software / code / prosody-modules
Comparison
mod_auth_http_async/README.markdown @ 1933:afba0821f058
mod_auth_http_async/README: Add compatibility info
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 24 Oct 2015 13:54:11 +0200 |
| parent | 1888:3483381c5e46 |
| child | 2121:4916c1b6517f |
comparison
equal
deleted
inserted
replaced
| 1932:3729245498ae | 1933:afba0821f058 |
|---|---|
| 1 --- | |
| 2 labels: | |
| 3 - Stage-Alpha | |
| 4 ... | |
| 5 | |
| 1 Introduction | 6 Introduction |
| 2 ============ | 7 ============ |
| 3 | 8 |
| 4 This is an experimental authentication module that does an asynchronous | 9 This is an experimental authentication module that does an asynchronous |
| 5 HTTP call to verify username and password. | 10 HTTP call to verify username and password. |
| 12 authentication][rfc7617] to the configured `http_auth_url`. | 17 authentication][rfc7617] to the configured `http_auth_url`. |
| 13 | 18 |
| 14 Configuration | 19 Configuration |
| 15 ============= | 20 ============= |
| 16 | 21 |
| 17 ``` {.lua} | 22 ``` lua |
| 18 VirtualHost "example.com" | 23 VirtualHost "example.com" |
| 19 authentication = "http_async" | 24 authentication = "http_async" |
| 20 http_auth_url = "http://example.com/auth" | 25 http_auth_url = "http://example.com/auth" |
| 21 ``` | 26 ``` |
| 22 | 27 |
| 28 Compatibility | |
| 29 ============= | |
| 30 | |
| 31 Requires 0.10+ |