mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-17 23:16:01 +00:00
nginx module: make acme group overrideable easily
This commit is contained in:
parent
dced724c00
commit
65a1762a9b
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ in
|
|||
acmeEnabledVhosts = filter (vhostConfig: vhostConfig.enableACME) vhostsConfigs;
|
||||
acmePairs = map (vhostConfig: { name = vhostConfig.serverName; value = {
|
||||
user = cfg.user;
|
||||
group = cfg.group;
|
||||
group = lib.mkDefault cfg.group;
|
||||
webroot = vhostConfig.acmeRoot;
|
||||
extraDomains = genAttrs vhostConfig.serverAliases (alias: null);
|
||||
postRun = ''
|
||||
|
|
Loading…
Add table
Reference in a new issue