From 74431f1df3d43f17417a90765ae3310009581415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9g=C3=A9?= Date: Tue, 8 Dec 2015 15:45:13 +0100 Subject: [PATCH] Allow Auth-User header to be set a REMOTE_USER Env var. --- ttrss.nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/ttrss.nginx.conf b/ttrss.nginx.conf index fa46f23..40e031d 100644 --- a/ttrss.nginx.conf +++ b/ttrss.nginx.conf @@ -9,6 +9,7 @@ server { } location ~ \.php$ { + fastcgi_param REMOTE_USER $HTTP_AUTH_USER; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php;