Apache 和 Tomcat 上的内容压缩

发布于 2024-08-05 22:01:40 字数 151 浏览 4 评论 0原文

我将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乞讨 2024-08-12 22:01:41

通常,您在 Apache mod_gzip 上配置了一些过滤器,例如,

mod_gzip_item_include         file       \.html$
mod_gzip_item_include         file       \.js$
mod_gzip_item_include         file       \.css$

Tomcat 压缩内容将简单地传递到客户端而不进行更改。

我不建议对两者都启用压缩。 Apache 做得更好,因为它支持 GZIP。 Tomcat只能支持inflate。

Normally, you have some filters configured on Apache mod_gzip, like,

mod_gzip_item_include         file       \.html$
mod_gzip_item_include         file       \.js$
mod_gzip_item_include         file       \.css$

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文