summaryrefslogtreecommitdiffstats
path: root/roles/prometheus
diff options
context:
space:
mode:
Diffstat (limited to 'roles/prometheus')
-rw-r--r--roles/prometheus/tasks/main.yml2
-rw-r--r--roles/prometheus/templates/prometheus.nginx.conf.j23
2 files changed, 4 insertions, 1 deletions
diff --git a/roles/prometheus/tasks/main.yml b/roles/prometheus/tasks/main.yml
index 123c1216..9921b441 100644
--- a/roles/prometheus/tasks/main.yml
+++ b/roles/prometheus/tasks/main.yml
@@ -67,7 +67,7 @@
when: proxy_type == "nginx" and prometheus_hostname | length > 0
ansible.builtin.template:
src: "prometheus.nginx.conf.j2"
- dest: "/etc/nginx/vhosts.d/prometheus.conf"
+ dest: "/etc/nginx/conf.d/prometheus.conf"
owner: "root"
group: "root"
mode: "0644"
diff --git a/roles/prometheus/templates/prometheus.nginx.conf.j2 b/roles/prometheus/templates/prometheus.nginx.conf.j2
index 5ae9c20c..5c8483f8 100644
--- a/roles/prometheus/templates/prometheus.nginx.conf.j2
+++ b/roles/prometheus/templates/prometheus.nginx.conf.j2
@@ -4,6 +4,9 @@ server {
server_name {{ prometheus_hostname }};
+ access_log /var/log/nginx/access.log;
+ error_log /var/log/nginx/error.log;
+
location / {
proxy_pass http://127.0.0.1:{{ prometheus_port }}/;
}