Nginx Windows平台上的基本身份验证

时间:2020-04-27 10:15:07

标签: windows authentication nginx

我在Windows操作系统上使用Nginx: **服务器{

    listen       443 ssl;
    server_name  *************;

    proxy_ssl_server_name on;
    ssl_certificate      ***************;//these are valid
    ssl_certificate_key  ***************;//these are valid
    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;
    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers  on;
   location / {
        auth_basic  "Restricted";
        auth_basic_user_file  C:\nginx\conf\password;
        proxy_pass ********;

   }

} **

每当我尝试访问该网站时,都会收到基本身份验证的提示,但是当我输入存储在密码文件中的用户名和密码时,我将被重定向到错误页面500。

我应该在密码文件中确切存储什么?

我当前的文件包含以下内容:

testUser1}%$ ep!8f8I

我使用下面的链接生成了以上内容:

http://aspirine.org/htpasswd_en.html

大多数在线文档都是基于Linux的。

谢谢

0 个答案:

没有答案