소스 검색

Allows to specify PORT from env on multiplex plugin

pierreozoux 9 년 전
부모
커밋
5dd2dd9f0b
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 + '/../../'
 };