diff --git a/features/webmap/router/src/main.ts b/features/webmap/router/src/main.ts index 69ebe5029..ad668fc61 100755 --- a/features/webmap/router/src/main.ts +++ b/features/webmap/router/src/main.ts @@ -10,7 +10,7 @@ import { HealthStatus, type HealthResponse } from '@lilith/nestjs-health'; import { DeploymentResolver } from './services/deployment-resolver'; import { ConfigInjector } from './services/config-injector'; -const PORT = parseInt(process.env.WEBMAP_PORT || '4002', 10); +const PORT = parseInt(process.env.PORT || process.env.WEBMAP_PORT || '3050', 10); const HOST = process.env.WEBMAP_HOST || '0.0.0.0'; const APPS_BUILD_DIR = process.env.APPS_BUILD_DIR || '/var/www/apps'; const VERSION = process.env.APP_VERSION || '1.0.0';