nginx.nix: don't reload nginx

Fixes #227

Reloading nginx manually is actually not needed (see
nginx-config-reload.service) and causes deadlocks.
This commit is contained in:
Guillaume Girol 2021-10-24 12:00:00 +00:00 committed by lewo
parent 9d3a87905e
commit a13526a6e3

View file

@ -36,7 +36,6 @@ in
}; };
security.acme.certs."${cfg.fqdn}".postRun = '' security.acme.certs."${cfg.fqdn}".postRun = ''
systemctl reload nginx
systemctl reload postfix systemctl reload postfix
systemctl reload dovecot2 systemctl reload dovecot2
''; '';