Skip to content
This repository has been archived by the owner on Nov 13, 2020. It is now read-only.

Commit

Permalink
node server.js PORT=80 INTERFACE=0.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tlhunter committed Jan 10, 2016
1 parent 9ee2772 commit 4b1fa1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var npcs = require('./lib/npcs.js').setMap(map).setSocket(io).setPlayers(

// Web Server Configuration
var server_port = parseInt(process.argv[2], 10) || 80; // most OS's will require sudo to listen on 80
var server_host = null;
var server_host = process.argv[3] || null;

var mongo_connection_string = 'mongodb://127.0.0.1:27017/terraformia';

Expand Down

0 comments on commit 4b1fa1d

Please sign in to comment.