Skip to content

Commit

Permalink
forced app to listen to IPV4 in container.
Browse files Browse the repository at this point in the history
  • Loading branch information
MattG57 committed Jan 19, 2025
1 parent ada7e3c commit 22ad115
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ class App {
(_, res) => res.sendFile(path.join(frontendPath, 'index.html'))
);

this.eListener = this.e.listen(this.port);
this.eListener = this.e.listen(this.port, '0.0.0.0');

}

private initializeSettings() {
Expand Down

0 comments on commit 22ad115

Please sign in to comment.