nginx: build with openssl 1.1

This will allow us to enable TLSv1.3
This commit is contained in:
Jan Tojnar 2019-02-23 09:37:12 +01:00
parent d7806fe4ed
commit 051e85296a
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -13699,12 +13699,14 @@ in
# We don't use `with` statement here on purpose!
# See https://github.com/NixOS/nixpkgs/pull/10474/files#r42369334
modules = [ nginxModules.rtmp nginxModules.dav nginxModules.moreheaders ];
openssl = openssl_1_1;
};
nginxMainline = callPackage ../servers/http/nginx/mainline.nix {
# We don't use `with` statement here on purpose!
# See https://github.com/NixOS/nixpkgs/pull/10474/files#r42369334
modules = [ nginxModules.dav nginxModules.moreheaders ];
openssl = openssl_1_1;
};
nginxModules = callPackage ../servers/http/nginx/modules.nix { };