13a847234e
* Add more advanced HTTP templating options * Let users choose the upload destination when uploading files * Implement the ability to print your NGINX configuration to your terminal after running a playbook
14 lines
305 B
YAML
14 lines
305 B
YAML
---
|
|
- name: "(All OSs) Create SSL Directory"
|
|
file:
|
|
path: /etc/ssl/nginx
|
|
state: directory
|
|
|
|
- name: "(All OSs) Copy NGINX Plus Certificate and License Key"
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: /etc/ssl/nginx
|
|
with_items:
|
|
- "{{ nginx_license.certificate }}"
|
|
- "{{ nginx_license.key }}"
|