如何在 YAWS 上启用 gzip 压缩?
How to enable gzip compression on YAWS?
如何在 yaws 上启用 gzip 压缩?
我有这个信息:
With this patch, Yaws will add 'Accept-Encoding' in 'Vary' header if the
support of gzip compression is enabled or if the response is compressed.
The 'Vary' header can be set using 'yaws:outh_set_vary(Fields)' or by
returning '{header, {vary, Fields}}' from scripts (where Fields is a list
of header names).
问题是我不知道在哪里添加 yaws:outh_set_vary(Fields) 或如何 return {header, {vary, Fields}}。
最简单的做法是在 yaws.conf
配置文件的服务器块中设置 deflate = true
以启用该服务器的 deflate 压缩。有关 deflate
的更多详细信息,包括对用于自定义服务器压缩设置的可选 <deflate> ... </deflate>
块的解释,请参阅 the Yaws config documentation。
如何在 yaws 上启用 gzip 压缩?
我有这个信息:
With this patch, Yaws will add 'Accept-Encoding' in 'Vary' header if the
support of gzip compression is enabled or if the response is compressed.
The 'Vary' header can be set using 'yaws:outh_set_vary(Fields)' or by
returning '{header, {vary, Fields}}' from scripts (where Fields is a list
of header names).
问题是我不知道在哪里添加 yaws:outh_set_vary(Fields) 或如何 return {header, {vary, Fields}}。
最简单的做法是在 yaws.conf
配置文件的服务器块中设置 deflate = true
以启用该服务器的 deflate 压缩。有关 deflate
的更多详细信息,包括对用于自定义服务器压缩设置的可选 <deflate> ... </deflate>
块的解释,请参阅 the Yaws config documentation。