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
+8
View File
@@ -0,0 +1,8 @@
upstream gitea_ssh {
server 10.0.0.2:2222;
}
server {
listen 2222;
proxy_pass gitea_ssh;
}