nixpkgs/nixos/tests/common/acme/server/snakeoil-certs.nix

14 lines
218 B
Nix
Raw Normal View History

let
domain = "acme.test";
in {
inherit domain;
ca = {
cert = ./ca.cert.pem;
key = ./ca.key.pem;
};
"${domain}" = {
cert = ./. + "/${domain}.cert.pem";
key = ./. + "/${domain}.key.pem";
};
}