2018-01-10 23:40:01 +01:00
|
|
|
---
|
2018-01-26 20:00:26 +01:00
|
|
|
- name: "(All OSs) Create SSL Directory"
|
2018-01-10 23:40:01 +01:00
|
|
|
file:
|
|
|
|
path: /etc/ssl/nginx
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: "(All OSs) Copy NGINX Plus Certificate and License Key"
|
|
|
|
copy:
|
|
|
|
src: "{{ item }}"
|
|
|
|
dest: /etc/ssl/nginx
|
2019-02-01 19:59:56 +01:00
|
|
|
decrypt: yes
|
2018-01-10 23:40:01 +01:00
|
|
|
with_items:
|
2018-10-16 20:52:04 +02:00
|
|
|
- "{{ nginx_license.certificate }}"
|
|
|
|
- "{{ nginx_license.key }}"
|