Last active
January 1, 2016 06:26
-
-
Save mlakkadshaw/1521fa5e9fce84b24087 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
ssl: { | |
ca: require('fs').readFileSync(__dirname + '/ssl/ca.crt'), | |
key: require('fs').readFileSync(__dirname + '/ssl/key.key'), | |
cert: require('fs').readFileSync(__dirname + '/ssl/cert.crt') | |
}, | |
port: 443 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment