在端口80上重定向Jenkins和Sonatype Nexus

时间:2015-04-09 13:55:56

标签: jenkins port nexus

我已经配置了Jenkins(my.example.com:8080/jenkins)和Nexus(my.example.com:8081/nexus)。两者都安装在单一服务器上,即CentOS 6.6 x64。要启动Jenkins,我使用命令" service jenkins start"对于nexus,我使用" service nexus start"。只是提到我没有在tomcat上部署它们。我只是想摆脱使用端口号。詹金斯网址的意思必须是" my.example.com/jenkins"和nexus" my.example.com/nexus"。你能告诉我如何实现这个目标吗?

2 个答案:

答案 0 :(得分:0)

安装Apache HTTP服务器,获取my.example.com的请求并与每个链接的端口通信......设置此环境有点棘手,如果您没有足够的http服务器实验,它将需要很多时间......

答案 1 :(得分:0)

使用nginx完成。
请转到:nginx:/etc/nginx/conf.d/default.conf
    location ~ /jenkins {
return 301 my.example.com:8080/jenkins;
}
location ~ /nexus {
return 301 my.example.com:8081/nexus;
}