需要在域名中添加 8080 才能使我的网络应用程序正常工作
我有一个 Java EE 应用程序,它使用 Tomcat 6 作为服务器。我已成功将其部署在 linode 上,但是要访问我的 Web 应用程序,我需要访问 www.xyz.com:8080,而不仅仅是 www.xyz.com(其中 xyz.com 是我的域)。
如果我点击 www.xyz.com,我就会得到我的应用程序的整个目录列表。
我做错了什么?
I have a Java EE application which uses Tomcat 6 as the server. I have managed to deploy it on linode, however to access my web application I need to hit www.xyz.com:8080, instead of just www.xyz.com (where xyz.com is my domain).
If I just hit www.xyz.com, I get the entire directory listing of my application.
What I am doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的应用程序服务器正在端口 8080 上侦听 HTTP 请求。将其配置更改为侦听 HTTP 的默认端口,即端口 80。
Your application server is listening for HTTP requests on port 8080. Change its configuration to listen to the default port for HTTP, which is port 80.