From b29195ce4c4c41e9c084f0ebd182a0a521b3c669 Mon Sep 17 00:00:00 2001 From: Michael Haener Date: Tue, 16 Jan 2024 15:12:56 +0100 Subject: [PATCH] nginx: add http sub module feature Providing the http sub module feature. The module works as a filter which replaces a specific character string in a response with another character string. Signed-off-by: Michael Haener 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 8890e0bea1..f65c209710 100644 --- a/meta-webserver/recipes-httpd/nginx/nginx.inc +++ b/meta-webserver/recipes-httpd/nginx/nginx.inc @@ -47,6 +47,7 @@ PACKAGECONFIG[http-auth-request] = "--with-http_auth_request_module,," PACKAGECONFIG[ipv6] = "--with-ipv6,," PACKAGECONFIG[webdav] = "--with-http_dav_module,," PACKAGECONFIG[stream] = "--with-stream,," +PACKAGECONFIG[http-sub-module] = "--with-http_sub_module,," PACKAGECONFIG[xslt] = "--with-http_xslt_module,,libxslt"