summaryrefslogtreecommitdiffstats
path: root/modules/tozt/files/nginx/grafana.conf
blob: 3d5aca87085aa1b6977d4108733fc8b03b3d82f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
server {
    listen       80;
    server_name  grafana.tozt.net;

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

    rewrite      ^(.*) https://$host$1 permanent;
}
# vim:ft=nginx