compute/haproxy-letsencrypt-docker.md
... ...
@@ -94,7 +94,7 @@ Things of note:
94 94
* certbot listens on port 8000, which docker is mapping to port 80 and making available to the outside world for Let's Encrypt to talk to. We don't need port 443 mapped, because this is an initial request and Let's Encrypt should be fine with just port 80.
95 95
* We're attaching a docker volume to /etc/letsencrypt - that's where the certs end up, and that's how we'll make them available to haproxy.
96 96
* The command concatenates the cert chain and private key into a format that haproxy understands, and dumps it out into the mounted /etc/letsencrypt volume.
97
-* certbot names the certs for the first domain specified, so that domain ends up in all of the paths under /etc/letsencrypt. You might be able to change that, but see [rule 1](rules#1-love-thy-defaults).
97
+* certbot names the certs for the first domain specified, so that domain ends up in all of the paths under /etc/letsencrypt. You might be able to change that, but see [rule 1](rules#1-thou-shalt-love-the-defaults).
98 98
99 99
## deploy-hook
100 100
The `letsencrypt/deploy-hook` script looks like: