diff options
| author | Tony <tony.ducrocq@gmail.com> | 2020-12-21 16:56:39 +0000 |
|---|---|---|
| committer | Tony <tony.ducrocq@gmail.com> | 2020-12-21 16:56:39 +0000 |
| commit | 564a24fd7811ea4e4bebe68f5e3b4ed3828b5330 (patch) | |
| tree | a5b6ae796b50f27305917a3f78e7940ee814d1b0 | |
| parent | 6da576dbe4dd933cc385569fbaab234cae21efff (diff) | |
Add support for HTTP_REMOTE_USER variable for user authentication
| -rw-r--r-- | plugins/auth_remote/init.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/auth_remote/init.php b/plugins/auth_remote/init.php index bad1af65e..d2e7a35e6 100644 --- a/plugins/auth_remote/init.php +++ b/plugins/auth_remote/init.php @@ -42,6 +42,7 @@ class Auth_Remote extends Plugin implements IAuthModule { */ function authenticate($login, $password) { $try_login = $_SERVER["REMOTE_USER"]; + if (!$try_login) $try_login = $_SERVER["HTTP_REMOTE_USER"]; // php-cgi if (!$try_login) $try_login = $_SERVER["REDIRECT_REMOTE_USER"]; |