nixos/nginx: support h2c

This commit is contained in:
Jordan Johnson-Doyle
2019-03-08 17:50:46 +00:00
parent e3e50a12cc
commit 04425c6223

View File

@@ -197,7 +197,7 @@ let
listenString = { addr, port, ssl, extraParameters ? [], ... }:
"listen ${addr}:${toString port} "
+ optionalString ssl "ssl "
+ optionalString (ssl && vhost.http2) "http2 "
+ optionalString vhost.http2 "http2 "
+ optionalString vhost.default "default_server "
+ optionalString (extraParameters != []) (concatStringsSep " " extraParameters)
+ ";";