mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 17:47:08 +03:00
Fix docker's letsencrypt renewal command (#942)
This commit is contained in:
parent
f5ccce4ef8
commit
bd487e8ff9
|
@ -109,7 +109,7 @@ If you would like to set up autorenewal of your certificates, the following comm
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
cd <project directory>
|
cd <project directory>
|
||||||
docker-compose run --rm --name certbot certbot bash -c "sleep 6 && certbot certonly --standalone -d {{ cookiecutter.domain_name }} --text --agree-tos --email {{ cookiecutter.email }} --server https://acme-v01.api.letsencrypt.org/directory --rsa-key-size 4096 --verbose --keep-until-expiring --standalone-supported-challenges http-01"
|
docker-compose run --rm --name certbot certbot bash -c "sleep 6 && certbot certonly --standalone -d {{ cookiecutter.domain_name }} --text --agree-tos --email {{ cookiecutter.email }} --server https://acme-v01.api.letsencrypt.org/directory --rsa-key-size 4096 --verbose --keep-until-expiring --standalone-supported-challenges http-01"
|
||||||
docker exec pearl_nginx_1 nginx -s reload
|
docker exec {{ cookiecutter.project_name }}_nginx_1 nginx -s reload
|
||||||
|
|
||||||
And then set a cronjob by running `crontab -e` and placing in it (period can be adjusted as desired)::
|
And then set a cronjob by running `crontab -e` and placing in it (period can be adjusted as desired)::
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user