Skip to content

Instantly share code, notes, and snippets.

@wilandm
Forked from dbirks/certbot-systemd-ubuntu.md
Created December 17, 2020 01:24
Show Gist options
  • Save wilandm/6bb1d869253471cad8cf036abd8d09d2 to your computer and use it in GitHub Desktop.
Save wilandm/6bb1d869253471cad8cf036abd8d09d2 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