25 lines
544 B
YAML
25 lines
544 B
YAML
---
|
|
- name: Create nginx customisation directory
|
|
become: true
|
|
file:
|
|
path: "/home/dokku/{{ app }}/nginx.conf.d/"
|
|
state: directory
|
|
owner: dokku
|
|
group: dokku
|
|
|
|
- name: Copy over the nginx custom configuration
|
|
become: true
|
|
template:
|
|
src: "{{ item }}"
|
|
dest: "/home/dokku/{{ app }}/nginx.conf.d/{{ item }}"
|
|
owner: dokku
|
|
group: dokku
|
|
with_fileglob:
|
|
- "{{ app_config_root }}/nginx.d/*.conf"
|
|
|
|
- name: Reload nginx to enable custom configurations
|
|
become: true
|
|
service:
|
|
name: nginx
|
|
state: reloaded
|