From cf903f2582e7a1bb62f9c203a03c59e4f6f6a2b5 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Wed, 5 Nov 2025 14:51:37 +0100 Subject: [PATCH] fix(traefik): update local dev ports and gitea SSH IP - Change Traefik local HTTP port from 8080 to 8081 (conflict with cadvisor) - Change Traefik dashboard port to 8093 (conflicts with cadvisor, Hyperion) - Update Gitea SSH service IP from 172.23.0.2 to 172.23.0.3 - Note: Gitea SSH works directly via Docker port mapping in local dev - Traefik TCP routing only needed for production (host network mode) --- deployment/stacks/traefik/docker-compose.local.yml | 4 ++-- deployment/stacks/traefik/dynamic/gitea-ssh.yml | 6 +++--- .../Cache/AttributeCache.php | 0 .../Collections/AttributeCollection.php | 0 .../Collections/ParameterCollection.php | 0 .../Factory/ReflectionCacheFactory.php | 0 .../{Reflection => ReflectionLegacy}/ReflectionProvider.php | 0 .../WrappedReflectionClass.php | 0 .../WrappedReflectionMethod.php | 0 9 files changed, 5 insertions(+), 5 deletions(-) rename src/Framework/{Reflection => ReflectionLegacy}/Cache/AttributeCache.php (100%) rename src/Framework/{Reflection => ReflectionLegacy}/Collections/AttributeCollection.php (100%) rename src/Framework/{Reflection => ReflectionLegacy}/Collections/ParameterCollection.php (100%) rename src/Framework/{Reflection => ReflectionLegacy}/Factory/ReflectionCacheFactory.php (100%) rename src/Framework/{Reflection => ReflectionLegacy}/ReflectionProvider.php (100%) rename src/Framework/{Reflection => ReflectionLegacy}/WrappedReflectionClass.php (100%) rename src/Framework/{Reflection => ReflectionLegacy}/WrappedReflectionMethod.php (100%) diff --git a/deployment/stacks/traefik/docker-compose.local.yml b/deployment/stacks/traefik/docker-compose.local.yml index 65419966..f81fa163 100644 --- a/deployment/stacks/traefik/docker-compose.local.yml +++ b/deployment/stacks/traefik/docker-compose.local.yml @@ -20,8 +20,8 @@ services: # For local development, we only use HTTP (no HTTPS needed) # Note: 8443:443 is used by the web container ports: - - "8080:80" # HTTP on port 80 (mapped to host port 8080) - - "8080:8080" # Traefik API entrypoint (for api.insecure=true dashboard) + - "8081:80" # HTTP on port 80 (mapped to host port 8081) + - "8093:8080" # Traefik API entrypoint (for api.insecure=true dashboard) environment: - TZ=Europe/Berlin volumes: diff --git a/deployment/stacks/traefik/dynamic/gitea-ssh.yml b/deployment/stacks/traefik/dynamic/gitea-ssh.yml index c26f5327..d7505b71 100644 --- a/deployment/stacks/traefik/dynamic/gitea-ssh.yml +++ b/deployment/stacks/traefik/dynamic/gitea-ssh.yml @@ -14,7 +14,7 @@ tcp: loadBalancer: servers: # Gitea container SSH service - # Note: Using container IP from traefik-public network + # Note: Using container IP from gitea_gitea-internal network # Traefik runs in host network mode, so we need the actual container IP - # IP address: 172.23.0.2 (traefik-public network) - - address: "172.23.0.2:22" + # IP address: 172.23.0.3 (gitea_gitea-internal network) + - address: "172.23.0.3:22" diff --git a/src/Framework/Reflection/Cache/AttributeCache.php b/src/Framework/ReflectionLegacy/Cache/AttributeCache.php similarity index 100% rename from src/Framework/Reflection/Cache/AttributeCache.php rename to src/Framework/ReflectionLegacy/Cache/AttributeCache.php diff --git a/src/Framework/Reflection/Collections/AttributeCollection.php b/src/Framework/ReflectionLegacy/Collections/AttributeCollection.php similarity index 100% rename from src/Framework/Reflection/Collections/AttributeCollection.php rename to src/Framework/ReflectionLegacy/Collections/AttributeCollection.php diff --git a/src/Framework/Reflection/Collections/ParameterCollection.php b/src/Framework/ReflectionLegacy/Collections/ParameterCollection.php similarity index 100% rename from src/Framework/Reflection/Collections/ParameterCollection.php rename to src/Framework/ReflectionLegacy/Collections/ParameterCollection.php diff --git a/src/Framework/Reflection/Factory/ReflectionCacheFactory.php b/src/Framework/ReflectionLegacy/Factory/ReflectionCacheFactory.php similarity index 100% rename from src/Framework/Reflection/Factory/ReflectionCacheFactory.php rename to src/Framework/ReflectionLegacy/Factory/ReflectionCacheFactory.php diff --git a/src/Framework/Reflection/ReflectionProvider.php b/src/Framework/ReflectionLegacy/ReflectionProvider.php similarity index 100% rename from src/Framework/Reflection/ReflectionProvider.php rename to src/Framework/ReflectionLegacy/ReflectionProvider.php diff --git a/src/Framework/Reflection/WrappedReflectionClass.php b/src/Framework/ReflectionLegacy/WrappedReflectionClass.php similarity index 100% rename from src/Framework/Reflection/WrappedReflectionClass.php rename to src/Framework/ReflectionLegacy/WrappedReflectionClass.php diff --git a/src/Framework/Reflection/WrappedReflectionMethod.php b/src/Framework/ReflectionLegacy/WrappedReflectionMethod.php similarity index 100% rename from src/Framework/Reflection/WrappedReflectionMethod.php rename to src/Framework/ReflectionLegacy/WrappedReflectionMethod.php