summaryrefslogtreecommitdiffstats
path: root/modules/tozt/files/nginx/gitea-tls.conf
blob: b0739961ede4ff95cccd8bfda09b510271d29914 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {
    listen       443;
    server_name  git.tozt.net;

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

    include ssl;

    location / {
        proxy_pass http://unix:/run/gitea/gitea.sock:/
    }
}
# vim:ft=nginx