Explorar o código

Merge pull request #1260 from pierreozoux/master

Allows to specify PORT from env on multiplex plugin
Hakim El Hattab %!s(int64=9) %!d(string=hai) anos
pai
achega
7225d84248
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 + '/../../'
 };