From bbccbaf64867ca84452bd64be27c48ffa5855727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Mon, 5 Feb 2024 21:49:20 +0100 Subject: [PATCH] fix bind adress --- apps/sdk-api/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sdk-api/src/index.ts b/apps/sdk-api/src/index.ts index 3269a549..111afd32 100644 --- a/apps/sdk-api/src/index.ts +++ b/apps/sdk-api/src/index.ts @@ -64,7 +64,7 @@ const startServer = async () => { } } - await fastify.listen({ port }); + await fastify.listen({ host: '0.0.0.0', port }); } catch (e) { console.error(e); }