-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Using systemd units instead of cron
allddd edited this page Sep 6, 2024
·
14 revisions
1. Create a systemd unit for acme.sh:
/etc/systemd/system/acme_letsencrypt.service
[Unit]
Description=Renew Let's Encrypt certificates using acme.sh
After=network-online.target nss-lookup.target
[Service]
Type=oneshot
SyslogIdentifier=acme.sh
# --home's argument should be where the acme.sh script resides.
ExecStart=/path/to/acme.sh --cron --home /path/to/acme.sh
2. Disable timestamps (optional):
/path/to/acme.sh/account.conf
NO_TIMESTAMP='1'
3. Test that it works before creating the timer:
sudo systemctl daemon-reload
sudo systemctl start acme_letsencrypt
journalctl -u acme_letsencrypt.service
4. Create systemd timer unit for the service above:
/etc/systemd/system/acme_letsencrypt.timer
[Unit]
Description=Daily renewal of Let's Encrypt's certificates
[Timer]
OnCalendar=daily
RandomizedDelaySec=1h
Persistent=true
[Install]
WantedBy=timers.target
5. Enable timer:
sudo systemctl start acme_letsencrypt.timer
sudo systemctl enable acme_letsencrypt.timer
Buy me a beer, Donate to acme.sh if it saves your time. Your donation makes acme.sh better: https://donate.acme.sh/
如果 acme.sh 帮你节省了时间,请考虑赏我一杯啤酒🍺, 捐助: https://donate.acme.sh/ 你的支持将会使得 acme.sh 越来越好. 感谢