From 2716e0b59bcd16acf79fa15ff43826f50a586b7b Mon Sep 17 00:00:00 2001 From: Stefan <53957363+Stefan080106@users.noreply.github.com> Date: Tue, 13 Jun 2023 17:25:28 +0200 Subject: [PATCH] Upadte SSL --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 0a08344..04cbc15 100644 --- a/src/index.js +++ b/src/index.js @@ -26,8 +26,8 @@ const PORT = config.port || 2000; const cacheFolder = "./cache/"; // Certificate -const privateKey = fs.readFileSync("./assets/ssl/localhost/localhost.decrypted.key"); -const certificate = fs.readFileSync("./assets/ssl/localhost/localhost.crt"); +const privateKey = fs.readFileSync("./assets/ssl/privkey.pem"); +const certificate = fs.readFileSync("./assets/ssl/cert.pem"); const credentials = { key: privateKey,