diff options
author | Christopher Baines <mail@cbaines.net> | 2021-06-04 13:54:20 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-06-09 08:54:24 +0100 |
commit | 2d31eeecf06ab14732d374c75cdf6e7a55aa704e (patch) | |
tree | 073d78752ca8059e27e114b2832316d0e6994b3e /gnu/packages/web.scm | |
parent | 054ebbf7db7c247bdd1aaa26c5564d710b8e63d9 (diff) | |
download | guix-2d31eeecf06ab14732d374c75cdf6e7a55aa704e.tar.gz guix-2d31eeecf06ab14732d374c75cdf6e7a55aa704e.zip |
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.
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 4753eca8da..15befe7e6d 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" |