Skip to content

Commit c17662f

Browse files
committed
Use integer port numbers.
1 parent b0a7ed9 commit c17662f

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

coder-base/config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

22
exports.listenIP = null; //Defaults to *
3-
exports.listenPort = '8081'; //the SSL port things run on
4-
exports.httpListenPort = '8080'; //this will all be redirected to SSL
3+
exports.listenPort = 8081; //the SSL port things run on
4+
exports.httpListenPort = 8080; //this will all be redirected to SSL
55
exports.cacheApps = true;
6-
exports.httpVisiblePort = '80'; //forwarded http port the user sees
7-
exports.httpsVisiblePort = '443'; //forwarded https port the user sees
6+
exports.httpVisiblePort = 80; //forwarded http port the user sees
7+
exports.httpsVisiblePort = 443; //forwarded https port the user sees
88

99

1010
//SSL Info

coder-base/config.js.default

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

22
exports.listenIP = null; //Defaults to *
3-
exports.listenPort = '8081'; //the SSL port things run on
4-
exports.httpListenPort = '8080'; //this will all be redirected to SSL
3+
exports.listenPort = 8081; //the SSL port things run on
4+
exports.httpListenPort = 8080; //this will all be redirected to SSL
55
exports.cacheApps = true;
6-
exports.httpVisiblePort = '80'; //forwarded http port the user sees
7-
exports.httpsVisiblePort = '443'; //forwarded https port the user sees
6+
exports.httpVisiblePort = 80; //forwarded http port the user sees
7+
exports.httpsVisiblePort = 443; //forwarded https port the user sees
88

99

1010
//SSL Info

coder-base/config.js.localhost

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

22
exports.listenIP = '127.0.0.1'; //Defaults to *
3-
exports.listenPort = '8081'; //the SSL port things run on
4-
exports.httpListenPort = '8080'; //this will all be redirected to SSL
3+
exports.listenPort = 8081; //the SSL port things run on
4+
exports.httpListenPort = 8080; //this will all be redirected to SSL
55
exports.cacheApps = true;
6-
exports.httpVisiblePort = '8080'; //forwarded http port the user sees
7-
exports.httpsVisiblePort = '8081'; //forwarded https port the user sees
6+
exports.httpVisiblePort = 8080; //forwarded http port the user sees
7+
exports.httpsVisiblePort = 8081; //forwarded https port the user sees
88

99

1010
//SSL Info

0 commit comments

Comments
 (0)