haproxy-letsencrypt-docker.md
... ...
@@ -288,7 +288,7 @@ What doing?
288 288
* We're mounting the letsencrypt volume back up at /etc/letsencrypt .
289 289
* The docker socket from the host is mounted at /var/run/docker.sock. This lets us do docker operations from inside the container.
290 290
* There's a small sleep to let haproxy start up (ewww, but also, whatever), then we attempt a renew and run the deploy-hook script (see stage 1) if anything changed.
291
-* The deploy-hook script (see stage 1) cats the cert chain and key into an haproxy style .pem file, then sends a SIGHUP via the docker command to the haproxy container, telling it to re-read its config.
291
+* The deploy-hook script concatenates the cert chain and key into an haproxy style .pem file, then sends a SIGHUP via the docker command to the haproxy container, telling it to re-read its config.
292 292
* The container is granted privileged permissions to let the docker socket work.
293 293
294 294
## Go!