hosts/security: fix cert path

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-09-04 11:35:33 +05:30
parent 895a495b3f
commit 4e5b555498

View File

@@ -16,6 +16,6 @@ in
lib.filterAttrs (_: v: v.enableACME) nginx.virtualHosts
);
};
pki.certificateFiles = [ ../../cert.pem ];
pki.certificateFiles = [ ../../../cert.pem ];
};
}