nginx/gitea.conf

13 lines
236 B
Text

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name git.exozy.me;
include conf.d/ssl;
location / {
proxy_pass http://unix:/run/gitea/gitea.socket;
client_max_body_size 1G;
}
}