From ef3cc6e87bd63d682b548b43dd8087c930093d4d Mon Sep 17 00:00:00 2001 From: Stefan Herbrechtsmeier Date: Tue, 29 Mar 2022 13:31:38 +0200 Subject: [PATCH] nginx: add gunzip PACKAGECONFIG The nginx gunzip module is a filter that decompresses responses with 'Content-Encoding: gzip' for clients that do not support 'gzip' encoding method. The module will be useful when it is desirable to store data compressed to save space and reduce I/O costs. Signed-off-by: Stefan Herbrechtsmeier Signed-off-by: Khem Raj --- meta-webserver/recipes-httpd/nginx/nginx.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-webserver/recipes-httpd/nginx/nginx.inc b/meta-webserver/recipes-httpd/nginx/nginx.inc index b99e29ef99..dfced33300 100644 --- a/meta-webserver/recipes-httpd/nginx/nginx.inc +++ b/meta-webserver/recipes-httpd/nginx/nginx.inc @@ -39,6 +39,7 @@ DISABLE_STATIC = "" PACKAGECONFIG ??= "ssl" +PACKAGECONFIG[gunzip] = "--with-http_gunzip_module,," PACKAGECONFIG[http2] = "--with-http_v2_module,," PACKAGECONFIG[ssl] = "--with-http_ssl_module,,openssl" PACKAGECONFIG[http-auth-request] = "--with-http_auth_request_module,,"