mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
nixos/cloudflared: fix cert.pem installation (#407128)
This commit is contained in:
commit
84c1069ebe
1 changed files with 1 additions and 1 deletions
|
|
@ -369,7 +369,7 @@ in
|
|||
RuntimeDirectoryMode = "0400";
|
||||
LoadCredential = [
|
||||
"credentials.json:${tunnel.credentialsFile}"
|
||||
] ++ (lib.optional (certFile != null) "cert.pem:certFile");
|
||||
] ++ (lib.optional (certFile != null) "cert.pem:${certFile}");
|
||||
|
||||
ExecStart = "${cfg.package}/bin/cloudflared tunnel --config=${mkConfigFile} --no-autoupdate run";
|
||||
Restart = "on-failure";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue