From 7d1a3b4e7d62eaa334f163d0bed81ed9b80ea00e Mon Sep 17 00:00:00 2001 From: Daniel Lando Date: Mon, 16 Oct 2023 17:25:03 +0200 Subject: [PATCH] fix: set default host to `::` Fixes #3347 --- config/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.ts b/config/app.ts index ffa2c228e89..f609cf74a46 100644 --- a/config/app.ts +++ b/config/app.ts @@ -21,4 +21,4 @@ export const defaultPsw: string = 'zwave' export const sessionSecret: string = process.env.SESSION_SECRET || 'DEFAULT_SESSION_SECRET_CHANGE_ME' export const base: string = process.env.BASE_PATH || '/' export const port: string | number = process.env.PORT || 8091 -export const host: string = process.env.HOST || '0.0.0.0' \ No newline at end of file +export const host: string = process.env.HOST || '::' \ No newline at end of file