mirror of
https://github.com/thelounge/thelounge
synced 2025-02-17 05:38:25 +00:00
Merge pull request #1028 from thelounge/xpaw/cert-var
Use local variables to check length
This commit is contained in:
commit
3e9678d9cf
1 changed files with 6 additions and 3 deletions
|
@ -42,17 +42,20 @@ module.exports = function() {
|
|||
server = require("http");
|
||||
server = server.createServer(app);
|
||||
} else {
|
||||
server = require("spdy");
|
||||
const keyPath = Helper.expandHome(config.https.key);
|
||||
const certPath = Helper.expandHome(config.https.certificate);
|
||||
if (!config.https.key.length || !fs.existsSync(keyPath)) {
|
||||
|
||||
if (!keyPath.length || !fs.existsSync(keyPath)) {
|
||||
log.error("Path to SSL key is invalid. Stopping server...");
|
||||
process.exit();
|
||||
}
|
||||
if (!config.https.certificate.length || !fs.existsSync(certPath)) {
|
||||
|
||||
if (!certPath.length || !fs.existsSync(certPath)) {
|
||||
log.error("Path to SSL certificate is invalid. Stopping server...");
|
||||
process.exit();
|
||||
}
|
||||
|
||||
server = require("spdy");
|
||||
server = server.createServer({
|
||||
key: fs.readFileSync(keyPath),
|
||||
cert: fs.readFileSync(certPath)
|
||||
|
|
Loading…
Add table
Reference in a new issue