Proxy Gitea SSH port 2222 through raspen

This commit is contained in:
2026-05-24 14:51:49 +02:00
parent a8a4567fd3
commit 01efd7188a
2 changed files with 9 additions and 0 deletions
+1
View File
@@ -13,6 +13,7 @@ services:
- "80:80" - "80:80"
- "443:443" - "443:443"
- "5432:5432" - "5432:5432"
- "2222:2222"
- "51820:51820/udp" - "51820:51820/udp"
restart: unless-stopped restart: unless-stopped
+8
View File
@@ -0,0 +1,8 @@
upstream gitea_ssh {
server 10.0.0.2:2222;
}
server {
listen 2222;
proxy_pass gitea_ssh;
}