1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_role_nginx.git synced 2024-08-16 16:19:48 +02:00
ansible_role_nginx/tasks/acme.yml
2020-11-02 04:52:31 +01:00

38 lines
912 B
YAML

---
- name: Copy shell script to enable tls sites
copy:
src: 'files/acmetool/enable_tls.sh'
dest: '/etc/acme/hooks/enable_tls.sh'
owner: root
group: root
mode: 'u=rx,g=r,o='
tags:
- configuration
- acme
- name: Get certificate for default server
command: acmetool want '{{ inventory_hostname }}'
args:
creates: '/var/lib/acme/live/{{ inventory_hostname }}'
tags:
- configuration
- acme
- certificates
- operation
- name: Get certificates for all configured sites
#command: acmetool want '{{ site.name }}' '{{ site.altnames | default([]) | join(" ") }}'
command: acmetool want '{{ ([site.name] + (site.altnames | default([]) )) | join(" ") }}'
args:
creates: '/var/lib/acme/live/{{ site.name }}/'
with_items: '{{ nginx_sites }}'
loop_control:
loop_var: site
tags:
- configuration
- acme
- certificates
- operation