9 lines
178 B
YAML
9 lines
178 B
YAML
- name: configure nginx
|
|
template:
|
|
src: nginx.conf.j2
|
|
dest: "{{ nginx_conf_d_path }}/grafana.conf"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify: reload nginx
|