8000 fix(server): listen on 0.0.0.0 · DavraYoung/postgres-meta@c54be39 · GitHub
[go: up one dir, main page]

Skip to content

Commit c54be39

Browse files
committed
fix(server): listen on 0.0.0.0
1 parent d1ec463 commit c54be39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if (PG_META_EXPORT_DOCS) {
4040
})
4141
} else {
4242
app.ready(() => {
43-
app.listen(PG_META_PORT, () => {
43+
app.listen(PG_META_PORT, '0.0.0.0', () => {
4444
app.log.info(`App started on port ${PG_META_PORT}`)
4545
})
4646
})

0 commit comments

Comments
 (0)
0