From 8c7525758e0658452d3745d0e5a5f69cf44e9f1f Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Auad Date: Tue, 5 May 2026 16:03:10 +0000 Subject: [PATCH] Modificadas las variables de entorno en el bus-gateway --- bus-gateway/.env.example | 2 +- bus-gateway/config/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bus-gateway/.env.example b/bus-gateway/.env.example index 9b212cc..f846386 100644 --- a/bus-gateway/.env.example +++ b/bus-gateway/.env.example @@ -1,4 +1,4 @@ -NODO_BASE_URL=localhost +NODO_URL_BASE=localhost # Bus FHIR (base, usado como fallback si no se definen MPI_URL o DOCUMENT_REGISTRY_URL) BUS_URL=http://bus-host:8080 diff --git a/bus-gateway/config/index.js b/bus-gateway/config/index.js index d65bf23..6cb3451 100644 --- a/bus-gateway/config/index.js +++ b/bus-gateway/config/index.js @@ -24,7 +24,7 @@ const config = { errorKey: 'err', nestedKey: null, }, - baseURL: process.env.NODO_BASE_URL || 'http://localhost', + baseURL: process.env.NODO_URL_BASE || 'http://localhost', debug: process.env.BUS_DEBUG === 'true', };