Welcome! Log In Create A New Profile

Advanced

Re: Inconsistent behavior with Nginx's auth_request_set and more_set_input_headers

Maxim Dounin
June 30, 2014 06:54PM
Hello!

On Sat, Jun 28, 2014 at 05:35:27PM +0000, admin@stichtingbcco.com wrote:

> Hi,
>
> I'm trying to use the auth_request module in conjunction with the
> more_set_input_headers to automatically login my users into web apps.
>
> Basically, it works like this:
>
> 1. Users have some session cookie that authenticates them.
> 2. I have a PHP script (auth.php) that validates the cookie and returns
> their proper username as a response header.
> 3. Nginx calls auth.php with auth_request, and sets the username in a
> variable.
> 4. Nginx then calls the web app with a request header set to the correct
> username.
> 5. The web app reads the header, and logs the user in.
>
> This works, but strangely inconsistent. The issue is that when a user
> accesses the web app on /app/, it works (the request header is sent), but
> when the app is accesssed on /app/index.php, it never receives the header
> from nginx.

This behaviour is likely due to the fact that
"more_set_input_headers" handler is executed before access phase
(where auth_request works), and hence only changes a request if
it's internally redirected.

Solution to the problem is to stop using "more_set_input_headers"
(it's anyway very wrong, request headers shouldn't be changed) and
use native "fastcgi_param" instead:

fastcgi_param HTTP_X_TEST_HEADER $auth_header;

> http://serverfault.com/questions/608625/inconsistent-behavior-with-nginxs-auth-request-set-and-more-set-input-%20headers

Will link this answer there.

--
Maxim Dounin
http://nginx.org/

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Inconsistent behavior with Nginx's auth_request_set and more_set_input_headers

Anonymous User June 28, 2014 01:36PM

Re: Inconsistent behavior with Nginx's auth_request_set and more_set_input_headers

Maxim Dounin June 30, 2014 06:54PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 116
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready