layout: post title: Autorenewing wildcard LetsEncrypt certificates on Namecheap using certbot + acme-dns subtitle: The "less" painful way #bigimg: /img/path.jpg
In early 2018, Let's Encrypt began issuing wildcard HTTPS certificates (e.g. for *.bryanroessler.com), which vastly simplified the process of securing multidomain personal websites for free. The main drawback is that LetsEncrypt requires users to renew their site certificates every three months, which can be a headache if users handle renewals manually. Programs like certbot-auto can automate the certificate renewal process but the implementations for wildcard domains have been flaky in the past. An additional complication is that not every DNS provider (like Namecheap) support APIs that allow ACME challenges or may require users to pay an additional fee ($50/mo) for access.
Luckily, it is possible for users to run their own DNS authentication server using acme-dns, which completely bypasses DNS provider limitations.
We will be running a small DNS server called acme-dns to respond to challenges issued by LetsEncrypt's certbot. You can run acme-dns on any computer, but typically it will run on the same host server as your website. Certbot will issue an ACME DNS challenge to your DNS provider, which will then forward the request (via some complicated (not really!) redirects) to your acme-dns server.
You have a running web server that is properly configured to handle your site certificates. You are probably using Namecheap as a DNS host because you are deep enough in Google's search index to find my site.
I am using Ubuntu 16.04 for this tutorial, but it should not matter which distro you are using as long as you know how to modify the firewall and install the appropriate software from your package manager.
go get github.com/joohoi/acme-dns/…
sudo cp ~/go/bin/acme-dns /usr/local/bin/acme-dns
sudo mkdir /etc/acme-dns/ /var/lib/acme-dns
Create the following file, substituting your site's domain name for and your server's IP address (yes the naming scheme is dumb, but leave "acme.", "ns1.acme.", etc):
#/etc/acme-dns/config.cfg
[general]
# DNS interface
listen = ":53"
protocol = "udp"
# domain name to serve the requests off of
domain = "acme.<yoursite>.com"
# zone name server
nsname = "ns1.acme.<yoursite>.com"
# admin email address, where @ is substituted with .
nsadmin = "admin.<yoursite>.com"
# predefined records served in addition to the TXT
records = [
"acme.<yoursite>.com. A 176.223.132.72",
"ns1.acme.<yoursite>.com. A 176.223.132.72",
"acme.<yoursite>.com. NS ns1.acme.<yoursite>.com.",
]
debug = false
[database]
engine = "sqlite3"
connection = "/var/lib/acme-dns/acme-dns.db"
[api]
api_domain = ""
ip = "127.0.0.1"
disable_registration = false
autocert_port = "80"
port = "8081"
tls = "none"
corsorigins = [
"*"
]
use_header = false
header_name = "X-Forwarded-For"
[logconfig]
loglevel = "debug"
logtype = "stdout"
logformat = "text"
A short explanation: you are configuring acme-dns to listen to DNS requests (from certbot via Namecheap) globally on the standard DNS port 53 and configuring the HTTP port for certbot to talk to acme-dns on port 8081 (since you are probably running something way cooler on port 8080).
Since certbot has to traverse Namecheap to perform the challenge, we will need to open port 53 in the firewall (traffic on port 8081 is handled on the localhost, so we don't need to open that port): sudo ufw allow 53/udp && sudo ufw reload
Let's start the acme-dns program automatically on startup. Create:
# /etc/systemd/system/acme-dns.service
[Unit]
Description=Limited DNS server with RESTful HTTP API to handle ACME DNS challenges easily and securely
After=network.target
[Service]
ExecStart=/usr/local/bin/acme-dns
Restart=on-failure
[Install]
WantedBy=multi-user.target
Note (Ubuntu 17.04+): you can security-harden the above script on distros running newer kernels by executing as a non-privileged user in conjunction with the AmbientCapabilities=CAP_NET_BIND_SERVICE
line. However, older kernels will cause systemd to choke on that line during service startup. If you choose to execute as a non-root user make sure to chown the /etc/acme-dns/
and /var/lib/acme-dns
directories!
sudo systemctl daemon-reload && sudo systemctl enable --now acme-dns.service
Great, now you've got a DNS authentication server that can respond to ACME challenges! You just saved yourself $50/month!
You will need to add two DNS records:
Now you just need to get certbot and acme-dns to work together!
sudo apt-get install python-requests
sudo wget -O /etc/letsencrypt/acme-dns-auth.py https://raw.githubusercontent.com/joohoi/acme-dns-certbot-joohoi/master/acme-dns-auth.py
sudo nano /etc/letsencrypt/acme-dns-auth.py
and change ACMEDNS_URL = "http://localhost:8081"
You will need to run certbot manually one time in order to be able to run certbot renew
in the future to handle the certificate renewals manually. If you've followed the rest of this tutorial, go ahead and run certbot to acquire your certs:
sudo certbot certonly -d "*.<yoursite>.com" -d "<youresite>.com" --agree-tos --manual-public-ip-logging-ok --server https://acme-v02.api.letsencrypt.org/directory --preferred-challenges dns --manual --manual-auth-hook /etc/letsencrypt/acme-dns-auth.py --debug-challenges
When you run the command certbot will prompt you to add one more DNS CNAME record to your DNS host.
Example: _acme-challenge.<yoursite>.com CNAME ch30791e-33f4-1af1-7db3-1ae95ecdde28.acme.<yoursite>.com.
Create a new CNAME record named _acme-challenge
and give it a value of ch30791e-33f4-1af1-7db3-1ae95ecdde28.acme.<yoursite>.com.
Wait a few minutes and hit to complete the ACME challenge and receive your certificates!
The step I'm sure you've been waiting for.
Create the certbot-renew.service (if you are using Apache in lieu of nginx, substitute "nginx" with "httpd"):
#/etc/systemd/system/certbot-renew.service
[Unit]
Description=Certbot Renewal
[Service]
ExecStart=/usr/bin/certbot renew --post-hook "systemctl restart nginx"
Create the associated timer file to run the renewal weekly:
#/etc/systemd/system/certbot-renew.timer
[Unit]
Description=Timer for Certbot Renewal
[Timer]
OnBootSec=300
OnUnitActiveSec=1w
[Install]
WantedBy=multi-user.target
Enable the timer: sudo systemctl enable certbot-renew.timer
A wild goose chase:
1ae95ecdde
.acme..com, so LetsEncrypt goes there instead
1ae95ecdde
.acme..com and acme-dns will answer that question
On a critical server it may be a good idea to start and stop acme-dns (and open and close port 53) alongside certbot execution. This can be handled fairly trivially with systemd Requires=
, but I'll leave that up to you!
Congratulations! You have successfully enabled automatic LetsEncrypt site certificate renewal on a finicky DNS host provider!