サーバーにjenkinsをインストールしましたが、nginx http authで保護したいので、次のように要求します。
http://my_domain.com:8080
http://ci.my_domain.com
1つの場所を除いて保護されます:
http://ci.my_domain.com/job/my_job/build
ビルドをトリガーするために必要です。私はnginxに少し慣れていないので、そのためにnginxconfigを使い続けました。
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;
}
}
上記の設定のようにsmthを試しましたが、アクセスhttp://my_domain.com:8080
するとhttp認証がありません。