目前我在Jetty服务器上运行Sonatype Nexus。我的关系可以在网址:http://example.com/nexus
找到。只是想知道是否可以将http://example.com
的请求重定向到http://example.com/nexus
?
非常感谢你的帮助!!!!
答案 0 :(得分:2)
Jetty设置在Nexus属性文件中控制:
尝试将 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)。