Skip to content

Instantly share code, notes, and snippets.

@cooljl31
Forked from dbirks/certbot-systemd-ubuntu.md
Created November 2, 2023 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cooljl31/f478f0a561d79050151841a14c30ccaf to your computer and use it in GitHub Desktop.
Save cooljl31/f478f0a561d79050151841a14c30ccaf 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