add a pre-hook to stop nginx for standalone mode
This commit is contained in:
parent
802423460a
commit
cc82212c99
|
@ -7,6 +7,6 @@
|
|||
- name: Install acme.sh
|
||||
shell: wget -O - https://get.acme.sh | sh
|
||||
- name: Generate certificate using acme.sh
|
||||
shell: /root/.acme.sh/acme.sh --issue -d {{ LOCAL_DOMAIN }}
|
||||
shell: /root/.acme.sh/acme.sh --issue --standalone -d {{ LOCAL_DOMAIN }} --pre-hook "service nginx stop"
|
||||
- name: Install certificate in storage directory
|
||||
shell: /root/.acme.sh/acme.sh --install-cert -d {{ LOCAL_DOMAIN }} --key-file /etc/ssl/letsencrypt/{{ LOCAL_DOMAIN }}.pem --fullchain-file /etc/ssl/letsencrypt/{{ LOCAL_DOMAIN }}.crt --reloadcmd "service nginx force-reload"
|
||||
shell: /root/.acme.sh/acme.sh --install-cert -d {{ LOCAL_DOMAIN }} --key-file /etc/ssl/letsencrypt/{{ LOCAL_DOMAIN }}.pem --fullchain-file /etc/ssl/letsencrypt/{{ LOCAL_DOMAIN }}.crt --reloadcmd "service nginx restart"
|
||||
|
|
Loading…
Reference in New Issue