Add gitea service

Needed to modify the nginx configuration to allow streaming of ssh.
Using docker compose for this service, will probably migrate all others soon.
This commit is contained in:
2026-01-18 12:37:12 +00:00
parent 0f21b271bc
commit d7c18b747e
8 changed files with 177 additions and 30 deletions

View File

@@ -0,0 +1,7 @@
# Stream the ssh connections for gitea
server {
listen 2222;
proxy_pass rpi5-2:2222; # the machine where sshd runs (often same as gitea)
proxy_timeout 1h;
proxy_connect_timeout 10s;
}