Jenkins不在EC2、https上加载插件

Jenkins不在EC2、https上加载插件,https,amazon-ec2,jenkins,Https,Amazon Ec2,Jenkins,我刚刚在EC2机器上安装了Jenkins。Jenkins通过Apache在端口443上提供SSL服务。我还没有买证书,所以https连接不安全 <VirtualHost *:443> ServerAdmin webmaster@localhost ServerName my_host_name ServerAlias ci SSLEngine on SSLCertificateFile /etc/apache2/ssl/apa

我刚刚在EC2机器上安装了Jenkins。Jenkins通过Apache在端口443上提供SSL服务。我还没有买证书,所以https连接不安全

<VirtualHost *:443>
    ServerAdmin webmaster@localhost
    ServerName my_host_name
    ServerAlias ci

        SSLEngine on
        SSLCertificateFile /etc/apache2/ssl/apache.crt
        SSLCertificateKeyFile /etc/apache2/ssl/apache.key

    ProxyRequests Off
    ProxyPreserveHost off
    ProxyPass    / http://localhost:8080/
    ProxyPassReverse / http://localhost:8080/
    <Proxy http://localhost:8080/*>
        Order deny,allow
        Allow from all
    </Proxy>
</VirtualHost>

服务器管理员webmaster@localhost
服务器名我的主机名
服务器别名ci
斯伦金安
SSLCertificateFile/etc/apache2/ssl/apache.crt
SSLCertificateKeyFile/etc/apache2/ssl/apache.key
代理请求关闭
代理主机关闭
ProxyPass/http://localhost:8080/
ProxyPassReverse/http://localhost:8080/
命令拒绝,允许
通融
詹金斯拒绝更新我的插件。我已经在
managejenkins
→ <代码>管理插件→ <代码>高级,它是。我尝试从服务器上的
curl
下载该文件,下载时没有出现问题


为什么Jenkins不能下载更新的json文件?

这是通过使用url的安全coutnerpart修复的

https://updates.jenkins-ci.org/update-center.json
而不是:

http://updates.jenkins-ci.org/update-center.json

这是误导,URL是相同的