mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 00:41:38 +02:00
add nginx plugin
This commit is contained in:
parent
0385c8b659
commit
63374e662e
9
tasks/create-cert-nginx.yml
Normal file
9
tasks/create-cert-nginx.yml
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
- name: Check if certificate already exists.
|
||||
stat:
|
||||
path: /etc/letsencrypt/live/{{ cert_item.domains | first }}/cert.pem
|
||||
register: letsencrypt_cert
|
||||
|
||||
- name: Generate new certificate if one doesn't exist.
|
||||
command: "{{ certbot_create_command }}"
|
||||
when: not letsencrypt_cert.stat.exists
|
Loading…
x
Reference in New Issue
Block a user