Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I can't seem to get this to work. According to the docs they can be used together.

Nginx Version: 1.10.3 --with-http_auth_request_module

location ~ ^/test(/.*|$) {
    satisfy any;
    auth_basic "test";
    auth_basic_user_file .htpasswd;
    auth_request auth.php;
}

My .htpasswd is blank. I want the username/password input in the basic form to be passed to my auth.php file. With this config when accessing /test I can see the subrequest made directly to auth.php. It never does a basic auth prompt. If I comment out auth_request auth.php the basic auth prompt does show. The doc does say to use satisfy any when using multiple auth modules.

There is an exact similar question with an answer, but it doesn't seem to work.

If anyone has gotten this to work can you help me out here?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
707 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...