hosts/kazuki: fix acme

This commit is contained in:
Nikodem Rabuliński 2024-02-11 16:17:39 +01:00
parent 298e70e838
commit f47a260b64
2 changed files with 2 additions and 2 deletions

View file

@ -69,6 +69,7 @@ in {
virtualHosts."attic.nrab.lol" = {
forceSSL = true;
enableACME = true;
acmeRoot = null;
locations."/" = {
proxyPass = "http://attic";
};
@ -104,7 +105,6 @@ in {
security.acme.certs."attic.nrab.lol" = {
dnsProvider = "cloudflare";
credentialsFile = config.age.secrets.nrab-lol-cf.path;
webroot = null;
};
security.acme.certs."cache.nrab.lol" = {

View file

@ -23,6 +23,7 @@
virtualHosts."vault.rabulinski.com" = {
forceSSL = true;
enableACME = true;
acmeRoot = null;
locations."/" = {
proxyPass = "http://vaultwarden";
proxyWebsockets = true;
@ -37,6 +38,5 @@
security.acme.certs."vault.rabulinski.com" = {
dnsProvider = "cloudflare";
credentialsFile = config.age.secrets.vault-cert-env.path;
webroot = null;
};
}