Skip to content

Commit

Permalink
fix: set default host to ::
Browse files Browse the repository at this point in the history
Fixes #3347
  • Loading branch information
robertsLando committed Oct 16, 2023
1 parent 82f5ee4 commit 7d1a3b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
export const host: string = process.env.HOST || '::'

0 comments on commit 7d1a3b4

Please sign in to comment.