Skip to content

Commit

Permalink
Merge pull request #42 from drips-network/jason/bind-to-ipv6
Browse files Browse the repository at this point in the history
Jason/bind to ipv6
  • Loading branch information
efstajas authored Dec 9, 2024
2 parents ca3a109 + cbaaff8 commit facc6ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const startServer = async () => {

await new Promise<void>((resolve) =>
// eslint-disable-next-line no-promise-executor-return
httpServer.listen({ port: appSettings.port }, resolve),
httpServer.listen(appSettings.port, '::', resolve),
);

console.log(`config: ${JSON.stringify(appSettings, null, 2)}`);
Expand Down

0 comments on commit facc6ce

Please sign in to comment.