ansible/roles/grafana/tasks/nginx.yaml

10 lines
198 B
YAML

---
- name: configure nginx
ansible.builtin.template:
src: nginx.conf.j2
dest: "{{ nginx_conf_d_path }}/grafana.conf"
owner: root
group: root
mode: 0644
notify: reload nginx