jenkins插件下载镜像加速

  • Post author:
  • Post category:其他




jenkins插件清华大学镜像地址

https://mirrors.tuna.tsinghua.edu.cn/jenkins/updates/update-center.json



更换地址方法

1.进入jenkins系统管理

2.进入插件管理

系统管理

3.点击高级,修改升级站点的地址为清华大学镜像地址

插件管理



有的时候更换镜像之后下载插件还是走的官方地址

原因:配置了清华的镜像之后他还是走的jenkins官方去拉取的,是因为清华镜像的配置文件里面的插件下载地址并不是指向的清华镜像,仍然指向的是jenkins官方的地址,我的解决方案是把jenkins官方的地址通过nginx吞掉直接转发到清华镜像去。

host配置

127.0.0.1 updates.jenkins-ci.org

nginx配置

rewrite ^/download/plugins/(.*)$ https://mirrors.tuna.tsinghua.edu.cn/jenkins/plugins/$1? last;

location /download/plugins
{
    proxy_next_upstream http_502 http_504 error timeout invalid_header;
    proxy_set_header Host mirrors.tuna.tsinghua.edu.cn;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
    rewrite /download/plugins(.*) /jenkins/plugins/$1 break;
    proxy_pass https://mirrors.tuna.tsinghua.edu.cn;
}

解决:可以通过在nginx上配置代理,将官方的插件下载地址映射到

https://mirrors.tuna.tsinghua.edu.cn/jenkins/plugins/


这样下载插件也会从镜像网站下载



版权声明:本文为you227原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。