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

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

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