Should be a string, not a list

This commit is contained in:
Peter Selby 2021-12-25 11:53:21 -08:00
parent 82d7b91d25
commit 00e8e764ac
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ let
certfiles = concatMapAttrsToList
(site: siteOpts:
if (siteOpts.enableACME) then
(hostCerts [siteOpts.hostname])
(hostCerts siteOpts.hostname)
else [])
cfg.sites;