ansible/roles/grafana/tasks/nginx.yaml

10 lines
198 B
YAML
Raw Normal View History

2022-08-31 13:32:20 -05:00
---
2019-12-01 20:40:29 -06:00
- name: configure nginx
2022-08-31 13:03:18 -05:00
ansible.builtin.template:
2019-12-01 20:40:29 -06:00
src: nginx.conf.j2
2020-09-20 22:44:45 -05:00
dest: "{{ nginx_conf_d_path }}/grafana.conf"
2019-12-01 20:40:29 -06:00
owner: root
group: root
mode: 0644
notify: reload nginx