Skip to content

Instantly share code, notes, and snippets.

@dbirks
Last active November 2, 2023 08:49
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save dbirks/0b659a149cab038ef696fd8a6274c48b to your computer and use it in GitHub Desktop.
Save dbirks/0b659a149cab038ef696fd8a6274c48b to your computer and use it in GitHub Desktop.
Certbot renew with a systemd timer on Ubuntu

Ubuntu 16.04

/etc/systemd/system/certbot.service

[Unit]
Description=Let's Encrypt renewal

[Service]
Type=oneshot
ExecStart=/usr/bin/certbot renew --quiet --agree-tos
ExecStartPost=/bin/systemctl reload apache2.service

/etc/systemd/system/certbot.timer

[Unit]
Description=Twice daily renewal of Let's Encrypt's certificates

[Timer]
OnCalendar=0/12:00:00
RandomizedDelaySec=1h
Persistent=true

[Install]
WantedBy=timers.target

Enable and start certbot.timer

systemctl enable --now certbot.timer

Modified from: https://wiki.archlinux.org/index.php/Let%E2%80%99s_Encrypt#systemd

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment