Skip to content

Commit a1ece6a

Browse files
committed
Serve to all IPs (fastify)
1 parent 6980e8f commit a1ece6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async function bootstrap() {
3333
await app.configure(app, config);
3434

3535
app.enableShutdownHooks();
36-
await app.listen(config.port, () => {
36+
await app.listen(config.port, '0.0.0.0', () => {
3737
app.get(Logger).log(`Listening at ${config.hostUrl$.value}graphql`);
3838
});
3939
}

0 commit comments

Comments
 (0)