summaryrefslogtreecommitdiffstats
path: root/modules/tozt/files/nginx/prometheus-tls.conf
blob: 25e8ebae8046e80ed778e1ec957b5bb0fdf8fe16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {
    listen       443 ssl;
    server_name  prometheus.tozt.net;

    access_log  /var/log/nginx/prometheus.access.log;
    error_log   /var/log/nginx/prometheus.error.log;

    include ssl;

    location / {
        proxy_pass http://127.0.0.1:9090/;
    }
}
# vim:ft=nginx