我在Jenkins
上安装了apache2
和Ubuntu-16.04 server
,两者都运行良好。现在我想使用apache为jenkins部署或配置反向代理。
从此site获取帮助进行配置。我根据需要配置了一切。 sites-available
文件夹ci.conf
下的配置文件类似于
<Virtualhost *:80>
ServerName jenkins.tre.com
ProxyRequests Off
ProxyPreserveHost On
AllowEncodedSlashes NoDecode
<Proxy http://localhost:8080/*>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:8080/ nocanon
ProxyPassReverse / http://localhost:8080/
ProxyPassReverse / http://jenkins.tre.com/
</Virtualhost>
和系统hostname
abd domain name
是
root@tre:~# hostname
tre
root@tre:~# domainname
(none)
当我重新启动apache & jenkins
并试图访问http://jenkins.tre.com/
页面无法打开时,任何人都可以帮助我....因为我非常喜欢这件事。