Change Git SSH port from 1337 to 2222

- Port 1337 appears to be blocked by VPS provider
- Port 2222 is more commonly allowed for SSH services
- Update both reverse-proxy and Forgejo configurations
- This should resolve the SSH timeout issues
This commit is contained in:
Geir Okkenhaug Jerstad 2025-06-10 22:42:13 +02:00
parent f2c9eed794
commit 1f222f2997
2 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@
server = {
ROOT_URL = "https://git.geokkjer.eu";
SSH_DOMAIN = "git.geokkjer.eu";
SSH_PORT = 1337;
SSH_PORT = 2222;
# Use system SSH server instead of built-in
DISABLE_SSH = false;
START_SSH_SERVER = false;