mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-30 18:24:03 +00:00
add missing cert parameters
This commit is contained in:
parent
51cf2ff6f9
commit
f23ecef636
1 changed files with 2 additions and 2 deletions
|
@ -66,8 +66,8 @@ let server;
|
||||||
if (sslKey && sslCert) {
|
if (sslKey && sslCert) {
|
||||||
console.log("Server Type: HTTPS");
|
console.log("Server Type: HTTPS");
|
||||||
server = https.createServer({
|
server = https.createServer({
|
||||||
key: sslKey,
|
key: fs.readFileSync(sslKey),
|
||||||
cert: sslCert
|
cert: fs.readFileSync(sslCert)
|
||||||
}, app);
|
}, app);
|
||||||
} else {
|
} else {
|
||||||
console.log("Server Type: HTTP");
|
console.log("Server Type: HTTP");
|
||||||
|
|
Loading…
Reference in a new issue