Skip to content

Commit

Permalink
Merge pull request #1 from juarez9j/juarez9j-fix-caSSL
Browse files Browse the repository at this point in the history
Fix_SSL_forMobileDevice_Add_CA
  • Loading branch information
juarez9j committed Dec 29, 2015
2 parents 986ed29 + 6d20e06 commit ea1006c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/core_modules/server/ExpressEngine.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ ExpressEngine.prototype.beginBootstrap = function(meanioinstance, database) {
if (config.https && config.https.port) {
var httpsOptions = {
key: fs.readFileSync(config.https.ssl.key),
cert: fs.readFileSync(config.https.ssl.cert)
cert: fs.readFileSync(config.https.ssl.cert),
ca: fs.readFileSync(config.https.ssl.ca)
};

var httpsServer = https.createServer(httpsOptions, app);
Expand Down

0 comments on commit ea1006c

Please sign in to comment.