fix: certbot not reload nginx
This commit is contained in:
parent
c24da9bea1
commit
f5ba45b20c
4 changed files with 22 additions and 7 deletions
|
|
@ -18,7 +18,6 @@
|
|||
"nginx.service"
|
||||
"network.target"
|
||||
];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
environment = {
|
||||
"REQUESTS_CA_BUNDLE" = ../extra/ca.crt;
|
||||
};
|
||||
|
|
@ -26,5 +25,16 @@
|
|||
ExecStart = ''${pkgs.certbot}/bin/certbot renew'';
|
||||
ExecStartPost = "${pkgs.busybox}/bin/chown nginx:nginx -R /etc/letsencrypt";
|
||||
};
|
||||
unitConfig = {
|
||||
OnSuccess = "nginx-reload-after-certbot.service";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.services."nginx-reload-after-certbot" = {
|
||||
serviceConfig = {
|
||||
User = "nginx";
|
||||
# This config file path refers to "services.nginx.enableReload"
|
||||
ExecStart = ''${pkgs.nginx}/bin/nginx -s reload -c /etc/nginx/nginx.conf'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue