Apache 和 Tomcat 上的内容压缩
我将 Apache 配置为压缩 Tomcat 上运行的 Web 应用程序的内容。该应用程序还使用压缩过滤器。
当 apache 接收到压缩内容并且它也设置为压缩内容时如何处理这种情况。
Apache 是否只是将内容转移到客户端或先解压缩内容然后再次压缩?
I have Apache configured to compress content from web app running on Tomcat. Also the application uses Compression Filter.
How apache handle such situation when it receives compressed content and it's setup to compress content too.
Does Apache just shift the content to client or unzip content first and then compress it again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您在 Apache mod_gzip 上配置了一些过滤器,例如,
Tomcat 压缩内容将简单地传递到客户端而不进行更改。
我不建议对两者都启用压缩。 Apache 做得更好,因为它支持 GZIP。 Tomcat只能支持inflate。
Normally, you have some filters configured on Apache mod_gzip, like,
The Tomcat compressed content will be simply passed to client without change.
I wouldn't recommend enabling compression on both. Apache does better job because it supports GZIP. Tomcat can only support inflate.