diff options
author | Joe Orton <jorton@apache.org> | 2024-10-11 18:20:44 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2024-10-11 18:20:44 +0200 |
commit | 61db0638bf29e59af6b49d9cabb6c0ec1fbabb0e (patch) | |
tree | 5d0b79a0e33f3d6d9058e5e301e044a385ecedcd /docs | |
parent | ErrorLogFormat %{c}t is actually what ISO 8601 calls "extended" format. (diff) | |
download | apache2-61db0638bf29e59af6b49d9cabb6c0ec1fbabb0e.tar.xz apache2-61db0638bf29e59af6b49d9cabb6c0ec1fbabb0e.zip |
mod_lua: Make r.ap_auth_type writable
This completes the option of setting the remote user by the authentication
mechanism which actually verified the user.
One possible usecase is that a proxied (upstream) server performs the
authentication, but the access log of HTTPd does not contain this information.
The upstream server can pass this kind of information back to HTTPd and both
servers will have consistent access logs.
Submitted by: Michael Osipov <michaelo apache.org>
PR: 62497
Github: closes #67
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1921260 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/mod_lua.xml | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_lua.xml.fr | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 3a85d6ec8c..38528f9465 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -360,7 +360,7 @@ end <tr> <td><code>ap_auth_type</code></td> <td>string</td> - <td>no</td> + <td>yes</td> <td>If an authentication check was made, this is set to the type of authentication (f.x. <code>basic</code>)</td> </tr> diff --git a/docs/manual/mod/mod_lua.xml.fr b/docs/manual/mod/mod_lua.xml.fr index 3931ad5e50..b61b43e711 100644 --- a/docs/manual/mod/mod_lua.xml.fr +++ b/docs/manual/mod/mod_lua.xml.fr @@ -383,7 +383,7 @@ end <tr> <td><code>ap_auth_type</code></td> <td>string</td> - <td>non</td> + <td>oui</td> <td>Ce champ contient le type d'authentification effectuée (par exemple <code>basic</code>)</td> </tr> |