: install/configure gitea

This commit is contained in:
VC
2025-01-29 12:05:43 +01:00
parent b3b234033d
commit 008d4411ad
10 changed files with 264 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
server {
{% include './templates/header.conf.j2' %}
client_max_body_size 10M;
location / {
proxy_pass http://localhost:3000;
include proxy_params;
proxy_buffering off;
tcp_nodelay on;
}
}