Fix: Add missing semicolon
This commit is contained in:
parent
8260464090
commit
39feb54aab
|
@ -53,7 +53,7 @@ function createServer() {
|
||||||
Object.keys(config.https).forEach(k => {
|
Object.keys(config.https).forEach(k => {
|
||||||
certs[k] = fs.readFileSync(config.https[k]);
|
certs[k] = fs.readFileSync(config.https[k]);
|
||||||
});
|
});
|
||||||
certs['allowHTTP1'] = true
|
certs['allowHTTP1'] = true;
|
||||||
return http2.createSecureServer(certs, app.callback());
|
return http2.createSecureServer(certs, app.callback());
|
||||||
} else {
|
} else {
|
||||||
return http.createServer(app.callback());
|
return http.createServer(app.callback());
|
||||||
|
|
Loading…
Reference in New Issue