From 8e183b9fb7a3d802acbeb7f6c10c087da9dabfa7 Mon Sep 17 00:00:00 2001 From: Lars Strojny Date: Mon, 7 Nov 2022 18:26:58 +0100 Subject: [PATCH] Listen not only on localhost --- src/http/fastify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/fastify.ts b/src/http/fastify.ts index a1dd1de..b11fd49 100644 --- a/src/http/fastify.ts +++ b/src/http/fastify.ts @@ -72,7 +72,7 @@ export const serve: HttpServer = async ({ adaptResponseToReply(probeController(), reply) }) - await fastify.listen({ port }) + await fastify.listen({ port, host: '::' }) return { shutdown() {