Преглед изворни кода

Merge pull request #1260 from pierreozoux/master

Allows to specify PORT from env on multiplex plugin
Hakim El Hattab пре 9 година
родитељ
комит
7225d84248
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      plugin/multiplex/index.js

+ 1 - 1
plugin/multiplex/index.js

@@ -9,7 +9,7 @@ var staticDir	= express.static;
 io				= io.listen(app);
 
 var opts = {
-	port: 1948,
+	port: process.env.PORT || 1948,
 	baseDir : __dirname + '/../../'
 };