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

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

    include ssl;

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