aboutsummaryrefslogtreecommitdiff
path: root/nginx-preread.scm
diff options
context:
space:
mode:
Diffstat (limited to 'nginx-preread.scm')
-rw-r--r--nginx-preread.scm15
1 files changed, 15 insertions, 0 deletions
diff --git a/nginx-preread.scm b/nginx-preread.scm
new file mode 100644
index 0000000..9b48024
--- /dev/null
+++ b/nginx-preread.scm
@@ -0,0 +1,15 @@
+;; nginx package that has the ssl_preread module compiled in. We use
+;; this on tux02 to pass HTTPS to containers without terminating TLS.
+
+(use-modules ((gnu packages web) #:select (nginx))
+ (guix gexp)
+ (guix packages)
+ (guix utils))
+
+(package
+ (inherit nginx)
+ (arguments
+ (substitute-keyword-arguments (package-arguments nginx)
+ ((#:configure-flags flags '())
+ #~(cons "--with-stream_ssl_preread_module"
+ #$flags)))))