Skip to content

Commit 08118dd

Browse files
authored
Update server.js
1 parent ebc71a3 commit 08118dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,4 +238,4 @@ app.get("/password", async (req, reply) => {
238238
return reply.sendFile("password.html");
239239
});
240240

241-
app.listen({ port }).then(()=>console.log(`Server running on ${port}`));
241+
app.listen({ port: 2345, host: '0.0.0.0' }).then((address) => console.log(`Server running on ${address}`));

0 commit comments

Comments
 (0)