From 63a0668a3067caaea1711eee030257c3af505071 Mon Sep 17 00:00:00 2001 From: Manfredi Pistone <30775241+manfredipist@users.noreply.github.com> Date: Fri, 1 Mar 2024 11:04:25 +0100 Subject: [PATCH] fix configService --- conf/config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/config.js b/conf/config.js index e1b6db41..b1d0df9d 100644 --- a/conf/config.js +++ b/conf/config.js @@ -140,7 +140,7 @@ config.iota = { * Host where MongoDB is located. If the MongoDB used is a replicaSet, this property will contain a * comma-separated list of the instance names or IPs. */ - host: 'mongodb', + host: 'localhost', /** * Port where MongoDB is listening. In the case of a replicaSet, all the instances are supposed to be listening * in the same port. @@ -173,7 +173,7 @@ config.iota = { * URL Where the IoT Agent Will listen for incoming updateContext and queryContext requests (for commands and * passive attributes). This URL will be sent in the Context Registration requests. */ - providerUrl: 'http://iotagent-opcua:4041', + providerUrl: 'http://localhost:4041', /** * Default maximum expire date for device registrations. */ @@ -217,7 +217,7 @@ config.opcua = { /** * Endpoint where the IoT Agent will listen for an active OPC UA Server. */ - endpoint: 'opc.tcp://iotcarsrv:5001/UA/CarServer', + endpoint: 'opc.tcp://localhost:5001/UA/CarServer', /** * Security Mode to access OPC UA Server. */