Update index.ts

This commit is contained in:
tamaina 2018-04-13 23:04:22 +09:00 committed by GitHub
parent 4cc38ce026
commit e49f7f40bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,6 +53,7 @@ function createServer() {
Object.keys(config.https).forEach(k => {
certs[k] = fs.readFileSync(config.https[k]);
});
certs['allowHTTP1'] = true
return http2.createSecureServer(certs, app.callback());
} else {
return http.createServer(app.callback());