mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 12:33:07 +00:00
Merge pull request #1024 from metsjeesus/ssl_bundle
Add SSL CA bundle option
This commit is contained in:
commit
6ae6600518
2 changed files with 18 additions and 2 deletions
|
@ -287,7 +287,16 @@ module.exports = {
|
||||||
// @example "sslcert/key-cert.pem"
|
// @example "sslcert/key-cert.pem"
|
||||||
// @default ""
|
// @default ""
|
||||||
//
|
//
|
||||||
certificate: ""
|
certificate: "",
|
||||||
|
|
||||||
|
//
|
||||||
|
// Path to the CA bundle.
|
||||||
|
//
|
||||||
|
// @type string
|
||||||
|
// @example "sslcert/bundle.pem"
|
||||||
|
// @default ""
|
||||||
|
//
|
||||||
|
ca: ""
|
||||||
},
|
},
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -44,6 +44,7 @@ module.exports = function() {
|
||||||
} else {
|
} else {
|
||||||
const keyPath = Helper.expandHome(config.https.key);
|
const keyPath = Helper.expandHome(config.https.key);
|
||||||
const certPath = Helper.expandHome(config.https.certificate);
|
const certPath = Helper.expandHome(config.https.certificate);
|
||||||
|
const caPath = Helper.expandHome(config.https.ca);
|
||||||
|
|
||||||
if (!keyPath.length || !fs.existsSync(keyPath)) {
|
if (!keyPath.length || !fs.existsSync(keyPath)) {
|
||||||
log.error("Path to SSL key is invalid. Stopping server...");
|
log.error("Path to SSL key is invalid. Stopping server...");
|
||||||
|
@ -55,10 +56,16 @@ module.exports = function() {
|
||||||
process.exit();
|
process.exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (caPath.length && !fs.existsSync(caPath)) {
|
||||||
|
log.error("Path to SSL ca bundle is invalid. Stopping server...");
|
||||||
|
process.exit();
|
||||||
|
}
|
||||||
|
|
||||||
server = require("spdy");
|
server = require("spdy");
|
||||||
server = server.createServer({
|
server = server.createServer({
|
||||||
key: fs.readFileSync(keyPath),
|
key: fs.readFileSync(keyPath),
|
||||||
cert: fs.readFileSync(certPath)
|
cert: fs.readFileSync(certPath),
|
||||||
|
ca: caPath ? fs.readFileSync(caPath) : undefined
|
||||||
}, app);
|
}, app);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue