diff options
author | Leo Famulari <leo@famulari.name> | 2022-09-10 02:57:05 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2022-10-17 17:23:20 -0400 |
commit | d85c254319435c3fcd1fc5842769b9f167f92b14 (patch) | |
tree | b7ab80bb133c76ebb4eb185a527e3c5f2124f867 /gnu/packages | |
parent | e9dcd4a3e4f2e17f578bd3f799ae41e4b57abb74 (diff) |
gnu: nginx: Support SSL / TLS for stream proxies.
* gnu/packages/web.scm (nginx)[arguments]: Add "--with-stream_ssl_module"
to #:configure-flags.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/web.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 967d4328b5..6ffd87942c 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -408,6 +408,7 @@ the same, being completely separated from the Internet.") "--with-pcre-jit" "--with-debug" "--with-stream" + "--with-stream_ssl_module" ;; Even when not cross-building, we pass the ;; --crossbuild option to avoid customizing for the ;; kernel version on the build machine. |