Przeglądaj źródła

Allows to specify PORT from env on multiplex plugin

pierreozoux 9 lat temu
rodzic
commit
5dd2dd9f0b
1 zmienionych plików z 1 dodań i 1 usunięć
  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 + '/../../'
 };