这是我的nginx conf(window2003服务器)
的一部分server {
listen 80;
server_name xxx.example.com;
access_log logs/example.com.log;
location / {
auth_basic "Restricted";
auth_basic_user_file c:/xxx/password_file;
proxy_set_header Authorization "";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:3000/xx/;
}
}
访问xxx.exmaple.com
网站提示我的输入用户名&密码(正确),反复重复此提示。
- password_file由Mac OS上的
htpassword
命令创建。- http://127.0.0.1:3000/xx/代理tomcat应用程序。
- nginx版本为
醇>1.7.12
窗口。
可能是HttpBasicAuthModule,nginx不支持windows平台吗?