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

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

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