summaryrefslogtreecommitdiffstats
path: root/roles/prometheus/templates/prometheus.nginx.conf.j2
blob: 5c8483f8494668eefb6133a300fb0995a101b401 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
server {
    listen 80;
    listen [::]:80;

    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 }}/;
    }
}