Skip to content

Commit 09203ed

Browse files
authored
Change app host to listen on all interfaces
1 parent 28b9f40 commit 09203ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ async function start(): Promise<void> {
44
const app = await createApp();
55

66
try {
7-
await app.listen({ host: '127.0.0.1', port: 8000 });
7+
await app.listen({ host: '0.0.0.0', port: 8000 });
88
} catch (error) {
99
app.log.error(error);
1010
process.exit(1);

0 commit comments

Comments
 (0)