nixpkgs-odroid-hc4/nixos/tests/common/acme/server/snakeoil-certs.nix
2025-12-20 09:59:59 +11:00

13 lines
218 B
Nix

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";
};
}