Welcome! Log In Create A New Profile

Advanced

BasicAuth config question

Anonymous User
October 25, 2018 12:58PM
If I define

nginx.conf
...
server {
...
include includes/conf1.inc;
include includes/conf2.inc;
...
}
...

cat includes/conf1.inc;
location ~ ^/sec($|/$) {
deny all;
}

cat includes/conf2.inc;
location = /sec/status {
auth_basic 'Secure Access';
auth_basic_user_file /etc/nginx/sec/users;
stub_status on;
}

@ https://example.com/sec/status

displays, as intended, a HTTP Basic Auth challenge.

But, if I move the auth_basic* into the immediately prior config file,

cat includes/conf1.inc;
location ~ ^/sec($|/$) {
deny all;
}
+ location ~ ^/sec {
+ auth_basic 'Secure Access';
+ auth_basic_user_file /etc/nginx/sec/users;
+ }

cat includes/conf2.inc;
location = /sec/status {
- auth_basic 'Secure Access';
- auth_basic_user_file /etc/nginx/sec/users;
stub_status on;
}

@ https://example.com/sec/status

displays server status immediately, WITHOUT any HTTP Basic Auth challenge.

What's wrong with my 2nd config that's causing it to NOT invoke Basic Auth challenge?
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

BasicAuth config question

Anonymous User October 25, 2018 12:58PM

Re: BasicAuth config question

Maxim Dounin October 25, 2018 01:24PM

Re: BasicAuth config question

Anonymous User October 25, 2018 01:36PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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