Sonatype Nexus:是否可以在jetty.xml中添加重定向url配置?

时间:2014-03-20 17:03:24

标签: nexus sonatype

目前我在Jetty服务器上运行Sonatype Nexus。我的关系可以在网址:http://example.com/nexus找到。只是想知道是否可以将http://example.com的请求重定向到http://example.com/nexus

非常感谢你的帮助!!!!

1 个答案:

答案 0 :(得分:2)

Jetty设置在Nexus属性文件中控制:

  • $ NEXUS_HOME / CONF / nexus.properties

尝试将 nexus-webapp-context-path 属性更改为" /"并重新启动Nexus:

# Jetty section
application-port=8081
application-host=0.0.0.0
nexus-webapp=${bundleBasedir}/nexus
nexus-webapp-context-path=/nexus

# Nexus section
nexus-work=${bundleBasedir}/../sonatype-work/nexus
runtime=${bundleBasedir}/nexus/WEB-INF

更好的选择是使用Apache或Nginx为Nexus设置反向代理。这样就无需以root身份运行Nexus(为了绑定到端口80)。