Last active
January 1, 2016 06:25
-
-
Save mlakkadshaw/1f7ab806e9193f68ee1f 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, | |
policies: { | |
'*': 'isHTTPS' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment