summaryrefslogtreecommitdiffstats
path: root/modules/tozt/files/nginx/prometheus-tls.conf
blob: ce0579bdb3e749db77975d0ad101a6a7e4e39c94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {
    listen       443 default 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