summaryrefslogtreecommitdiffstats
path: root/modules/tozt/files/nginx/gitea-tls.conf
blob: 53516e897c8fdd595c7c81d2fdd093cc429208bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {
    listen       443;
    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