Skip to content

Instantly share code, notes, and snippets.

@larzconwell
Created August 14, 2012 18:32
Show Gist options
  • Save larzconwell/3351522 to your computer and use it in GitHub Desktop.
Save larzconwell/3351522 to your computer and use it in GitHub Desktop.
// Style 1
var config = {
spdy: true,
ssl: {
key: '/home/larz/Desktop/server.key',
cert: '/home/larz/Desktop/server.crt'
}
};
module.exports = config;
// Style 2
var config = {
spdy: {
key: '/home/larz/Desktop/server.key',
cert: '/home/larz/Desktop/server.crt'
}
};
module.exports = config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment