Welcome! Log In Create A New Profile

Advanced

Re: auth_request and nested locations

Maxim Dounin
December 11, 2012 03:30AM
Hello!

On Mon, Dec 10, 2012 at 10:35:00PM -0500, djczaski wrote:

> Except for a few exceptions, I want to require authentication for an
> entire site. The safest place would be to put the auth_request
> directive at the http level but there's no way to allow the
> exceptions. If I put the auth_request in locations I'll need to
> repeat it multiple times and that seems less maintainable because the
> chance of it getting missed when new services are added or changed. Is
> there a decent way of structuring the config file for an auth portion
> of a site and an un auth'd side?

There are two basic aproaches:

1) Use "auth_request off" to switch off auth when needed:

auth_request /auth;

location / {
...
}

location /no_auth_here/ {
auth_request off;
}

2) Use nested locations for places which need auth, and
explicitly configure locations without auth when needed:

location / {
auth_request /auth;

location /some_nested_location_with_auth/ {
...
}
}

location /no_auth_here/ {
# no auth_request here
}

--
Maxim Dounin
http://nginx.com/support.html

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

auth_request and nested locations

djczaski December 10, 2012 10:36PM

Re: auth_request and nested locations

Maxim Dounin December 11, 2012 03:30AM

Re: auth_request and nested locations

djczaski December 11, 2012 06:54AM

Re: auth_request and nested locations

Francis Daly December 11, 2012 07:04AM

Re: auth_request and nested locations

Jonathan Matthews December 11, 2012 07:06AM

Re: auth_request and nested locations

djczaski December 11, 2012 08:36AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 165
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