nixos/nextcloud: fix inclusion of trusted_domains in override config
Regression I caused with 3944aa051c
, sorry
for this! The Nextcloud installer broke back then because
`trusted_domains` was an empty value by default (a.k.a an empty array)
which seemed to break the config merger of Nextcloud as Nextcloud
doesn't do recursive merging and now no domain was trusted because of
that, hence Nextcloud was unreachable for the `curl` call.
This commit is contained in:
parent
f99063f6a1
commit
c5e515f5c7
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ in {
|
|||
${optionalString (c.dbpass != null) "'dbpassword' => '${c.dbpass}',"}
|
||||
${optionalString (c.dbpassFile != null) "'dbpassword' => nix_read_pwd(),"}
|
||||
'dbtype' => '${c.dbtype}',
|
||||
'trusted_domains' => ${writePhpArrary c.extraTrustedDomains},
|
||||
'trusted_domains' => ${writePhpArrary ([ cfg.hostName ] ++ c.extraTrustedDomains)},
|
||||
];
|
||||
'';
|
||||
occInstallCmd = let
|
||||
|
|
Loading…
Reference in a new issue