Guilhem Saurel 7 years ago
parent
commit
f3b20f0177
1 changed files with 1 additions and 2 deletions
  1. 1 2
      README.md

+ 1 - 2
README.md

@@ -36,12 +36,11 @@ export MYSQL_PASSWORD=$(openssl rand -base64 32)
 export MYSQL_ROOT_PASSWORD=$(openssl rand -base64 32)
 
 cp nginx.conf /etc/nginx
-systemctl nginix restart
+systemctl restart nginx
 for service in pad git cloud
 do
     pushd $service
     ln -s $PWD/nginx.conf /etc/nginx/sites-enabled/$service
-    systemctl restart nginx
     certbot certonly --email $MAIL --webroot -w /srv/letsencrypt/ --agree-tos -d www.$service.$DOMAIN,$service.$DOMAIN
     docker-compose up -d
     popd