File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
2
2
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
5
5
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
8
8
9
9
10
10
//SSL Info
Original file line number Diff line number Diff line change 1
1
2
2
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
5
5
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
8
8
9
9
10
10
//SSL Info
Original file line number Diff line number Diff line change 1
1
2
2
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
5
5
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
8
8
9
9
10
10
//SSL Info
You can’t perform that action at this time.
0 commit comments