diff --git a/README.md b/README.md index 774a785..375403d 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ A fork of techfreak's [Pathfinder-container](https://gitlab.com/techfreak/pathfi ```shell docker-compose exec pfdb /bin/sh -c "unzip -p eve_universe.sql.zip | mysql -u root -p\$MYSQL_ROOT_PASSWORD eve_universe"; -1. **When everthing works, configure Traefik correctly for production** +1. **When everything works, configure Traefik correctly for production** * Remove the staging CA server line from `docker-compose.yml`from the `command` block of the traefik service definition. * Delete the `./letsencrypt/acme.json` configuration file so Let's Encrypt will get a new certificate.

* If you are not the root user on your host you may need to edit file permissions. Docker-engine creates the `letsencrypt` director as root user, which means that you would need to prefix `sudo` on any future docker commands (`sudo docker-compose up` etc). To avoid doing this you can take ownership of the letsencrypt directory by running `sudo chown -R $USER ./letsencrypt`.