Welcome! Log In Create A New Profile

Advanced

Re: Error pages/Web Authentication

Maxim Dounin
June 11, 2011 06:30AM
Hello!

On Sat, Jun 11, 2011 at 04:55:28AM -0400, HTF wrote:

> Hello,
>
> I still have some issue with this configuration. I restricted access to
> admin back end:
>
> location /administrator {
> auth_basic "Authorized Access Only!";
> auth_basic_user_file .userdb;
> }
>
> - however when I add index.php file to the URl
> (mydomain.com/administrator/index.php) the nginx just allow me to access
> this part of the website without authentication.
> I modified above configuration to:
>
> location ^~ /administrator {
> auth_basic "Authorized Access Only!";
> auth_basic_user_file .userdb;
> }
>
> - then even if I append index.php it's still ask me for login
> credentials but when I logged in the web browser is trying to download a
> file instead of opening the website.
>
> Can someone point me to the right direction please as this problem
> persist even with the nginx default config files/configuration examples.

nginx uses only *one* configuration to process request, please see
here:

http://wiki.nginx.org/HttpCoreModule#location

If you want /administrator to be protected, but still want php
processed there, you have to define two locations for this: one
for protected static files and one for protected php files.

Using nested location simple config will look like:

location ^~ /administrator {
auth_basic ...
...

location ~ \.php$ {
fastcgi_pass ...
...
}
}

Maxim Dounin

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

Error pages/Web Authentication

HTF June 09, 2011 10:17AM

Re: Error pages/Web Authentication

Maxim Dounin June 09, 2011 12:18PM

Re: Error pages/Web Authentication

HTF June 09, 2011 01:01PM

Re: Error pages/Web Authentication

Maxim Dounin June 09, 2011 02:00PM

Re: Error pages/Web Authentication

HTF June 09, 2011 05:43PM

Re: Error pages/Web Authentication

António P. P. Almeida June 10, 2011 01:32PM

Re: Error pages/Web Authentication

HTF June 10, 2011 01:48PM

Re: Error pages/Web Authentication

HTF June 10, 2011 01:59PM

Re: Error pages/Web Authentication

António P. P. Almeida June 10, 2011 02:00PM

Re: Error pages/Web Authentication

tsaavik July 07, 2011 11:14AM

Re: Error pages/Web Authentication

Maxim Dounin July 07, 2011 01:24PM

Re: Error pages/Web Authentication

HTF June 10, 2011 02:13PM

Re: Error pages/Web Authentication

HTF June 11, 2011 04:55AM

Re: Error pages/Web Authentication

Maxim Dounin June 11, 2011 06:30AM

Re: Error pages/Web Authentication

HTF June 14, 2011 11:21PM

Re: Error pages/Web Authentication

Maxim Dounin June 15, 2011 04:06AM

Re: Error pages/Web Authentication

HTF June 15, 2011 08:34AM

Re: Error pages/Web Authentication

Maxim Dounin June 15, 2011 03:32PM



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: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready