mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-24 06:49:41 -05:00
add support for https
This commit is contained in:
parent
9d41da4aa2
commit
b88b357b55
@ -6,6 +6,7 @@ const { sleep, debug, TimeLogger, getRandomInt } = require("../src/util");
|
|||||||
console.log("Importing Node libraries")
|
console.log("Importing Node libraries")
|
||||||
const fs = require("fs");
|
const fs = require("fs");
|
||||||
const http = require("http");
|
const http = require("http");
|
||||||
|
const https = require("https");
|
||||||
|
|
||||||
console.log("Importing 3rd-party libraries")
|
console.log("Importing 3rd-party libraries")
|
||||||
debug("Importing express");
|
debug("Importing express");
|
||||||
@ -45,9 +46,21 @@ console.info("Version: " + checkVersion.version);
|
|||||||
const hostname = process.env.HOST || args.host;
|
const hostname = process.env.HOST || args.host;
|
||||||
const port = parseInt(process.env.PORT || args.port || 3001);
|
const port = parseInt(process.env.PORT || args.port || 3001);
|
||||||
|
|
||||||
|
// SSL
|
||||||
|
const sslKey = process.env.SSL_KEY || args.ssl_key || undefined;
|
||||||
|
const sslCert = process.env.SSL_CERT || args.ssl_cert || undefined;
|
||||||
|
|
||||||
console.log("Creating express and socket.io instance")
|
console.log("Creating express and socket.io instance")
|
||||||
const app = express();
|
const app = express();
|
||||||
const server = http.createServer(app);
|
|
||||||
|
let server;
|
||||||
|
|
||||||
|
if (sslKey && sslCert) {
|
||||||
|
https.createServer(app);
|
||||||
|
} else {
|
||||||
|
http.createServer(app);
|
||||||
|
}
|
||||||
|
|
||||||
const io = new Server(server);
|
const io = new Server(server);
|
||||||
app.use(express.json())
|
app.use(express.json())
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user