配置Apache在localhost / jenkins而不是localhost:8080上运行Jenkins

时间:2015-10-02 11:43:59

标签: apache jenkins

我在装有Windows Installer的Windows PC上安装了Jenkins。它在localhost:8080中成功运行但我想在localhost / jenkins或jenkins.localhost中运行。我尝试将以下虚拟主机添加到我的http-vhost.conf中,但它不起作用。

<VirtualHost *:8080>
    ServerName jenkins.localhost
    ServerAlias jenkins.localhost
    ProxyPass / http://localhost:8080/
    ProxyPassReverse / http://localhost:8080/
</VirtualHost>

我做错了什么?

1 个答案:

答案 0 :(得分:0)

我制作了一个虚拟主机并将其路由到那里并解决了这个问题。