nixos/pomerium: fix useACMEHost
useACMEHost doesn't work properly, because I forgot to actually define the variable that is being relied upon here. Oops.
This commit is contained in:
parent
a05293a93c
commit
ddf4795824
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ in
|
|||
before = [ "acme-finished-${cfg.useACMEHost}.target" ];
|
||||
after = [ "acme-${cfg.useACMEHost}.service" ];
|
||||
# Block reloading if not all certs exist yet.
|
||||
unitConfig.ConditionPathExists = [ "${certs.${cfg.useACMEHost}.directory}/fullchain.pem" ];
|
||||
unitConfig.ConditionPathExists = [ "${config.security.acme.certs.${cfg.useACMEHost}.directory}/fullchain.pem" ];
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
TimeoutSec = 60;
|
||||
|
|
Loading…
Reference in a new issue