From 69fec4a0fad4722b42c0a420ba9b3e22c81368c7 Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Sun, 15 Feb 2026 13:23:43 -0500 Subject: [PATCH] fix: Move Gitea SSH to port 8095 (keep all infra in 809x range) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed: 2222 → 8095 for SSH Keeps all infrastructure ports sequential: 8090-8095 Port allocation: - 8090: Gitea HTTP - 8091: SeaweedFS Filer - 8092: SeaweedFS S3 - 8093: SeaweedFS Master - 8094: SeaweedFS Volume - 8095: Gitea SSH Co-Authored-By: Claude Sonnet 4.5 --- infra/NPM-CONFIG.md | 4 ++-- infra/README.md | 4 ++-- infra/docker-compose.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/infra/NPM-CONFIG.md b/infra/NPM-CONFIG.md index 2f96f92..2037853 100644 --- a/infra/NPM-CONFIG.md +++ b/infra/NPM-CONFIG.md @@ -78,7 +78,7 @@ location /s3/ { | Service | Container | Internal Port | Host Port | Domain | |---------|-----------|---------------|-----------|--------| | Gitea Web | corrosion-gitea | 3000 | 8090 | git.corrosionmgmt.com | -| Gitea SSH | corrosion-gitea | 22 | 2222 | git.corrosionmgmt.com:2222 | +| Gitea SSH | corrosion-gitea | 22 | 8095 | git.corrosionmgmt.com:8095 | | SeaweedFS Filer | corrosion-cdn | 8888 | 8091 | cdn.corrosionmgmt.com | | SeaweedFS S3 | corrosion-cdn | 8333 | 8092 | Internal only | | SeaweedFS Master | corrosion-cdn | 9333 | 8093 | Internal only | @@ -116,4 +116,4 @@ If Asgard has a firewall, ensure these ports are accessible: - 9333 (Master UI - for admin) **External SSH (if using git over SSH):** -- 2222 (Gitea SSH) +- 8095 (Gitea SSH) diff --git a/infra/README.md b/infra/README.md index 9b25221..d10c936 100644 --- a/infra/README.md +++ b/infra/README.md @@ -7,7 +7,7 @@ ### Gitea (git.corrosionmgmt.com) - **Container**: `corrosion-gitea` - **Host Port**: 8090 -- **SSH Port**: 2222 +- **SSH Port**: 8095 - **Database**: SQLite (self-contained) - **Purpose**: Source control, CI/CD, companion agent releases @@ -61,7 +61,7 @@ docker compose up -d ## Access Points - **Gitea Web**: https://git.corrosionmgmt.com -- **Gitea SSH**: ssh://git@git.corrosionmgmt.com:2222 +- **Gitea SSH**: ssh://git@git.corrosionmgmt.com:8095 - **CDN Filer UI**: https://cdn.corrosionmgmt.com - **S3 API**: http://:8092 (internal only, no proxy) - **SeaweedFS Master**: http://:8093 (internal only, no proxy) diff --git a/infra/docker-compose.yml b/infra/docker-compose.yml index f01c968..8ca09fa 100644 --- a/infra/docker-compose.yml +++ b/infra/docker-compose.yml @@ -27,7 +27,7 @@ services: - /etc/localtime:/etc/localtime:ro ports: - "8090:3000" # Web UI (Map to git.corrosionmgmt.com) - - "2222:22" # SSH (git clone ssh://git@git.corrosionmgmt.com:2222/...) + - "8095:22" # SSH (git clone ssh://git@git.corrosionmgmt.com:8095/...) # --------------------------------------------------------------------------- # TARGET 2: SEAWEEDFS (S3 Artifact Storage & CDN)