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

    server_name {{ prometheus_hostname }};

    location / {
        proxy_pass http://127.0.0.1:{{ prometheus_port }}/;
    }
}