我在使用 just 安装的 Ubuntu 服务器上安装了 jenkins 的基本安装,因此,现在可以通过简单地添加URLsudo apt-get install jenkins
从指向我的框的所有域访问 jenkins 。:8080
我已成功将 apache 配置为代理 jenkins,以便我可以从中访问它ci.mydomain.com
,但我无法弄清楚如何防止 jenkins 在端口 8080 上被访问。
这是我的apache conf:
<VirtualHost xx.xx.xx.xx:80>
ServerAdmin me@mydomain.com
ServerName ci.mydomain.com
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
ProxyRequests Off
<Proxy http://localhost:8080/*>
Order deny,allow
Allow from all
</Proxy>
</VirtualHost>
我已按照此处的 Ubuntu 说明进行操作,但它们似乎没有任何效果。