Update README.md
This commit is contained in:
parent
5275511071
commit
98db5e1d04
23
README.md
23
README.md
|
@ -192,6 +192,27 @@ and played around for an hour until it did.
|
||||||
|
|
||||||
:-)
|
:-)
|
||||||
|
|
||||||
|
File hierarchy:
|
||||||
|
|
||||||
|
```
|
||||||
|
webapps/
|
||||||
|
└── vhosts
|
||||||
|
├── aj.the.dj
|
||||||
|
│ └── ssl
|
||||||
|
│ ├── server.crt
|
||||||
|
│ └── server.key
|
||||||
|
├── ballprovo.com
|
||||||
|
│ └── ssl
|
||||||
|
│ ├── server.crt
|
||||||
|
│ └── server.key
|
||||||
|
├── server.js
|
||||||
|
└── ssl
|
||||||
|
├── Geotrust Cross Root CA.txt
|
||||||
|
└── Rapid SSL CA.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
`server.js`:
|
||||||
```javascript
|
```javascript
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
@ -247,7 +268,7 @@ app.use('/', function (req, res) {
|
||||||
sslOptions = {
|
sslOptions = {
|
||||||
//SNICallback is passed the domain name, see NodeJS docs on TLS
|
//SNICallback is passed the domain name, see NodeJS docs on TLS
|
||||||
SNICallback: function (domain) {
|
SNICallback: function (domain) {
|
||||||
console.log(domain);
|
console.log('SNI:', domain);
|
||||||
return secureContexts[domain];
|
return secureContexts[domain];
|
||||||
}
|
}
|
||||||
// fallback / default domain
|
// fallback / default domain
|
||||||
|
|
Loading…
Reference in New Issue