Merge pull request #299546 from Izorkin/update-angie
angie: add withAcme option
This commit is contained in:
commit
30881b23db
@ -3,6 +3,7 @@
|
||||
, lib
|
||||
, fetchurl
|
||||
, nixosTests
|
||||
, withAcme ? false
|
||||
, withQuic ? false
|
||||
, fetchpatch
|
||||
, ...
|
||||
@ -17,7 +18,10 @@ callPackage ../nginx/generic.nix args rec {
|
||||
hash = "sha256-pSBy+Gv3rSa0WqQOxLHM0V03/vLqvOYBGxrjY9qsBfQ=";
|
||||
};
|
||||
|
||||
configureFlags = lib.optional withQuic [
|
||||
configureFlags = lib.optionals withAcme [
|
||||
"--with-http_acme_module"
|
||||
"--http-acme-client-path=/var/lib/nginx/acme"
|
||||
] ++ lib.optionals withQuic [
|
||||
"--with-http_v3_module"
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user