Skip to content

Instantly share code, notes, and snippets.

@adamTrz
Created November 6, 2019 13:09
Show Gist options
  • Select an option

  • Save adamTrz/b2595607d8ec11d69e846cfd1309806c to your computer and use it in GitHub Desktop.

Select an option

Save adamTrz/b2595607d8ec11d69e846cfd1309806c to your computer and use it in GitHub Desktop.
let options = {};
if (!__DEV__) {
options = {
key: fs.readFileSync('./ssl/key.pem', 'utf8'),
cert: fs.readFileSync('./ssl/cert.pem', 'utf8'),
};
}
const server = __DEV__ ? app : https.createServer(options, app);
server.listen(PORT);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment