Skip to content
This repository was archived by the owner on Nov 23, 2022. It is now read-only.

Commit e932388

Browse files
committed
Fix fastify binding address
1 parent 0600a72 commit e932388

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ exports.startServer = async (port = 8080) => {
4343
.ready();
4444

4545
// start server
46-
await fastify.listen(port);
46+
await fastify.listen(port, '0.0.0.0');
4747
logger.info(`Server running at: ${fastify.server.address().port}`);
4848

4949
return fastify;

0 commit comments

Comments
 (0)