我在我的服务器上安装了 jenkins,我想用 nginx http auth 保护它,以便请求:
http://my_domain.com:8080
http://ci.my_domain.com
将受到保护,但一个位置除外:
http://ci.my_domain.com/job/my_job/build
需要触发构建。我对 nginx 有点陌生,所以我坚持使用 nginx 配置。
upstream jenkins {
server 127.0.0.1:8080;
}
server {
listen x.x.x.x:8080;
server_name *.*;
location '/' {
proxy_pass http://jenkins;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
auth_basic "Restricted";
auth_basic_user_file /path/.htpasswd;
}
}
我尝试了上面的配置,但是当我访问时http://my_domain.com:8080
没有 http auth。