Browse Source

Merge pull request #1260 from pierreozoux/master

Allows to specify PORT from env on multiplex plugin
Hakim El Hattab 9 năm trước cách đây
mục cha
commit
7225d84248
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 + '/../../'
 };