This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 2d31eee gnu: nginx: Build with support for a few more modules.
2d31eee is described below
commit 2d31eeecf06ab14732d374c75cdf6e7a55aa704e
Author: Christopher Baines <[email protected]>
AuthorDate: Fri Jun 4 13:54:20 2021 +0100
gnu: nginx: Build with support for a few more modules.
I think this is generally useful. Personally, I want the HTTP gzip static
and
gunzip ones for serving gzip compressed log files, and I spotted that the
HTTP
sub and addition ones are easy to enable as well.
* gnu/packages/web.scm (nginx)[arguments]: Add the following configure
flags:
--with-http_gzip_static_module, --with-http_gunzip_module,
--with-http_addition_module, --with-http_sub_module.
---
gnu/packages/web.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 4753eca..15befe7 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -399,6 +399,10 @@ the same, being completely separated from the Internet.")
"--with-http_ssl_module"
"--with-http_v2_module"
"--with-http_xslt_module"
+ "--with-http_gzip_static_module"
+ "--with-http_gunzip_module"
+ "--with-http_addition_module"
+ "--with-http_sub_module"
"--with-pcre-jit"
"--with-debug"
"--with-stream"