Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 123456789101112131415161718 |
- #!/bin/bash
-
- docker stop production_nginx_1
-
- ### Get new keys
- sudo certbot renew
-
- ### Remove the old keys
- rm ~/production/nginx/keys/letsencrypt/old/letsencrypt.*
-
- ### Deprecate and back up the current keys
- mv ~/production/nginx/keys/letsencrypt.* ~/production/nginx/keys/old
-
- ### Copy over the new keys
- sudo cat /etc/letsencrypt/live/<CHANGE_ME>/fullchain.pem > ~/production/nginx/keys/letsencrypt.crt
- sudo cat /etc/letsencrypt/live/<CHANGE_ME>/privkey.pem > ~/production/nginx/keys/letsencrypt.key
-
- echo "RUN the ./rebuild.sh script now to move over the newly generated keys and restart the container"
|