Skip to content

Commit

Permalink
Merge pull request #65299 from Ma27/fix-nextcloud-test
Browse files Browse the repository at this point in the history
nixos/nextcloud: fix inclusion of trusted_domains in override config
  • Loading branch information
globin authored Jul 24, 2019
2 parents 12d3b61 + c5e515f commit 5806e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/web-apps/nextcloud.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5806e71

Please sign in to comment.