mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Revert "nixos/nginx: support h2c"
This commit is contained in:
parent
a9bbf7b44f
commit
f8de52a2fe
@ -197,7 +197,7 @@ let
|
|||||||
listenString = { addr, port, ssl, extraParameters ? [], ... }:
|
listenString = { addr, port, ssl, extraParameters ? [], ... }:
|
||||||
"listen ${addr}:${toString port} "
|
"listen ${addr}:${toString port} "
|
||||||
+ optionalString ssl "ssl "
|
+ optionalString ssl "ssl "
|
||||||
+ optionalString vhost.http2 "http2 "
|
+ optionalString (ssl && vhost.http2) "http2 "
|
||||||
+ optionalString vhost.default "default_server "
|
+ optionalString vhost.default "default_server "
|
||||||
+ optionalString (extraParameters != []) (concatStringsSep " " extraParameters)
|
+ optionalString (extraParameters != []) (concatStringsSep " " extraParameters)
|
||||||
+ ";";
|
+ ";";
|
||||||
|
Loading…
Reference in New Issue
Block a user