我在装有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>
我做错了什么?
答案 0 :(得分:0)
我制作了一个虚拟主机并将其路由到那里并解决了这个问题。