From 3cabc5a9f4182971e84bef19e73e64205a82578a Mon Sep 17 00:00:00 2001 From: ZigBalthazar Date: Wed, 18 Dec 2024 00:25:31 +0330 Subject: [PATCH] fix: ip bind for grpc --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 2a79c48..cce3cb0 100644 --- a/src/main.ts +++ b/src/main.ts @@ -67,7 +67,7 @@ async function bootstrap() { }, package: 'kraken', protoPath: configService.grpcConfig.protoPath, - url: `localhost:${configService.grpcConfig.port}`, + url: `0.0.0.0:${configService.grpcConfig.port}`, }, });