initial commit

This commit is contained in:
HgO
2020-04-13 14:46:45 +02:00
commit 961498e32b
76 changed files with 2715 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
location {{ alertmanager_web_path }}/ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
auth_basic "Authentication required for Alert Manager";
auth_basic_user_file /etc/nginx/.htpasswd-alertmanager;
proxy_pass http://localhost:{{ alertmanager_port }}/;
}

View File

@@ -0,0 +1,5 @@
{{ ansible_managed | comment }}
location {{ grafana_web_path }}/ {
proxy_pass http://localhost:{{ grafana_port }}/;
}

View File

@@ -0,0 +1,11 @@
location {{ prometheus_web_path }}/ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
auth_basic "Authentication required";
auth_basic_user_file /etc/nginx/.htpasswd-prometheus;
proxy_pass http://localhost:{{ prometheus_port }}/;
}