quasar/acme.nix
Khaïs COLIN 57f9da1de8 docspell service seems to work
just need to configure nginx as a reverse-proxy
2024-08-23 09:57:21 +00:00

17 lines
399 B
Nix

{ base-domain, ... }:
{
security.acme = {
certs.${base-domain}.extraDomainNames = [
"${base-domain}"
"sourcehut.${base-domain}"
"meta.sourcehut.${base-domain}"
"git.sourcehut.${base-domain}"
"docspell.${base-domain}"
];
acceptTerms = true;
defaults = {
email = "khais.colin+letsencrypt@gmail.com";
dnsProvider = "namecheap";
};
};
}