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

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

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