Welcome! Log In Create A New Profile

Advanced

Re: Password protection and fastcgi

Valentin V. Bartenev
December 21, 2011 09:12AM
On Wednesday 21 December 2011 17:47:43 Veerle wrote:
> Ensiferous Wrote:
> -------------------------------------------------------
>
> > The right way is to add the auth basic directives
> > to the PHP location as nginx will only ever
> > execute one location. So in your pasted config, if
> > nginx gets a request for
> > /passwordprotected/index.php then it won't be
> > protected.
>
> Thanks,
>
> how can i add them to the same direction? I don't want to protect all
> files, ionly files in the specific folder.
> Something like that don't work:
>
> server {
> root /foo/;
> ...
> location ~ \.php$ {
> fastcgi_pass foo;
> include fastcgi_parms;
>
> location ^~ /passwordprotected {
> auth_basic "foo";
> auth_basic_user_file foo;
> }
>
> }
>
> }
>


location ^~ /passwordprotected {
auth_basic "foo";
auth_basic_user_file foo;

location ~ \.php$ {
fastcgi_pass foo;
include fastcgi_parms;
}
}


wbr, Valentin V. Bartenev

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

Password protection and fastcgi

Veerle December 20, 2011 04:43PM

Re: Password protection and fastcgi

Ensiferous December 20, 2011 09:56PM

Re: Password protection and fastcgi

Veerle December 21, 2011 08:47AM

Re: Password protection and fastcgi

Valentin V. Bartenev December 21, 2011 09:12AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 166
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 500 on July 15, 2024
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready