ansible/roles/grafana/tasks/nginx.yaml

10 lines
198 B
YAML
Raw Normal View History

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