Skip to content

Commit

Permalink
change default ip
Browse files Browse the repository at this point in the history
  • Loading branch information
wassfila committed Apr 13, 2024
1 parent f71c3d4 commit 69a4b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const outdir = (process.env.OUT_DIR==null)?"dist":process.env.OUT_DIR
const protocol = (process.env.PROTOCOL==null)?"http":process.env.PROTOCOL
const host = (process.env.HOST==null)?"127.0.0.1":process.env.HOST
const host = (process.env.HOST==null)?"0.0.0.0":process.env.HOST
const port = (process.env.PORT==null)?"3001":process.env.PORT

const app = express();
Expand Down

0 comments on commit 69a4b11

Please sign in to comment.