1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 06:45:54 +00:00

Add support for HTTP_REMOTE_USER variable for user authentication

This commit is contained in:
Tony
2020-12-21 16:56:39 +00:00
parent 6da576dbe4
commit 564a24fd78

View File

@@ -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"];