nginx/gitea.conf

13 lines
236 B
Text
Raw Normal View History

2021-05-22 18:30:52 +00:00
server {
2021-06-17 03:28:04 +00:00
listen 443 ssl http2;
listen [::]:443 ssl http2;
2021-05-22 18:30:52 +00:00
server_name git.exozy.me;
include conf.d/ssl;
2021-06-17 03:28:04 +00:00
2021-05-22 18:30:52 +00:00
location / {
proxy_pass http://unix:/run/gitea/gitea.socket;
2021-09-10 13:15:43 +00:00
client_max_body_size 1G;
2021-05-22 18:30:52 +00:00
}
}