Apache 应该服务什么,Tomcat 应该服务什么?
我正在尝试在 Tomcat 之前设置 Apache。 Apache 提供什么服务?我知道 Apache 对于静态页面和图像效果更好。我目前在 Tomcat 中部署了一个 war 文件,其中包含静态页面、图像和 Flash 文件。我应该把这些都放在 Apache 服务器上吗?如何从 Tomcat 应用程序引用这些页面/图像?
我想使用 Apache 来减小 war 文件大小并希望更快地提供图像。是否有关于设置 Apache 和 Tomcat 以及放置内容的良好指南?
I'm trying to set up Apache in front of Tomcat. What do I have Apache serve? I know Apache works better for static pages and images. I currently deploy a war file in Tomcat that contains static pages, images, and Flash files. Should I put those all on the Apache server? How to I reference those pages/images from the Tomcat application?
I would like to use Apache to decrease the war file size and hopefully serve images faster. Is there a good guide for setting up Apache and Tomcat and what to place where?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 Tomcat 服务器上有性能/负载问题吗?如果需要(性能、安全性等)就这样做,但如果不需要,就不要让事情变得更复杂。
它曾经是在 Tomcat 前面使用 Apache 服务器的标准,但 Tomcat 的最新版本可以(并且经常)用作 HTTP 服务器和 Servlet 容器。
有关该主题的信息,请查看 Tomcat 连接器常见问题解答。
...
Do you have a problem with performance/load on your Tomcat server? Do it if you need to(performance, security, etc), but don't make things more complicated if you don't need to.
It used to be the standard to front Tomcat with an Apache server, but recent versions of Tomcat can(and often times are) used as both the HTTP Server and the Servlet Container.
Take a look at the Tomcat Connector FAQ for information on the subject.
...