We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebc71a3 commit 08118ddCopy full SHA for 08118dd
server.js
@@ -238,4 +238,4 @@ app.get("/password", async (req, reply) => {
238
return reply.sendFile("password.html");
239
});
240
241
-app.listen({ port }).then(()=>console.log(`Server running on ${port}`));
+app.listen({ port: 2345, host: '0.0.0.0' }).then((address) => console.log(`Server running on ${address}`));
0 commit comments