File tree Expand file tree Collapse file tree 3 files changed +68
-240
lines changed Expand file tree Collapse file tree 3 files changed +68
-240
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
5
3
exports . cacheApps = true ;
4
+
5
+ exports . httpListenPort = 8080 ; //this will all be redirected to SSL
6
+ exports . httpslistenPort = 8081 ; //the SSL port things run on
7
+
6
8
exports . httpVisiblePort = 80 ; //forwarded http port the user sees
7
9
exports . httpsVisiblePort = 443 ; //forwarded https port the user sees
8
10
9
11
10
12
//SSL Info
11
- exports . country = "US" ;
12
- exports . state = "New York" ;
13
- exports . locale = "New York" ;
14
- exports . commonName = "coder.local" ;
15
- exports . subjectAltName = "DNS:192.168.0.1" ;
13
+ exports . ssl = { }
14
+ exports . ssl . enable = true
15
+ exports . ssl . country = "US" ;
16
+ exports . ssl . state = "New York" ;
17
+ exports . ssl . locale = "New York" ;
18
+ exports . ssl . commonName = "coder.local" ;
19
+ exports . ssl . subjectAltName = "DNS:192.168.0.1" ;
16
20
17
21
18
22
//Experimental
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments