Skip to content

Instantly share code, notes, and snippets.

@Davisonpro
Last active January 13, 2019 11:12
Show Gist options
  • Save Davisonpro/41c95db7825411e3c9ad9d9ad572269d to your computer and use it in GitHub Desktop.
Save Davisonpro/41c95db7825411e3c9ad9d9ad572269d to your computer and use it in GitHub Desktop.
Node js SSL
const express = require('express'),
chalk = require('chalk'),
fs = require( 'fs' );
const pkg = require( './package.json' );
const start = Date.now(),
protocol = process.env.PROTOCOL || 'https',
port = process.env.PORT || '3000',
host = process.env.HOST || 'localhost';
let server;
function sendBootStatus( status ) {
// don't send anything if we're not running in a fork
if ( ! process.send ) {
return;
}
process.send( { boot: status } );
}
const app = express();
app.get('/', (request, response) => {
response.send('Hello, world!');
});
app.get( '/version', function( request, response ) {
response.json( {
version: pkg.version
} );
} );
console.log(
chalk.yellow( '%s booted in %dms - %s://%s:%s' ),
pkg.name,
Date.now() - start,
protocol,
host,
port
);
// Start a development HTTPS server.
if ( protocol === 'https' ) {
const { execSync } = require( 'child_process' );
const execOptions = { encoding: 'utf-8', windowsHide: true };
let key = './certs/key.pem';
let certificate = './certs/certificate.pem';
if ( ! fs.existsSync( key ) || ! fs.existsSync( certificate ) ) {
try {
execSync( 'openssl version', execOptions );
execSync(
`openssl req -x509 -newkey rsa:2048 -keyout ./certs/key.tmp.pem -out ${ certificate } -days 365 -nodes -subj "/C=US/ST=Foo/L=Bar/O=Baz/CN=localhost"`,
execOptions
);
execSync( `openssl rsa -in ./certs/key.tmp.pem -out ${ key }`, execOptions );
execSync( 'rm ./certs/key.tmp.pem', execOptions );
} catch ( error ) {
console.error( error );
}
}
const options = {
key: fs.readFileSync( key ),
cert: fs.readFileSync( certificate ),
passphrase : 'password'
};
server = require( 'https' ).createServer( options, app );
} else {
server = require( 'http' ).createServer( app );
}
server.listen( { port, host }, function() {
// Tell the parent process that Server has booted.
sendBootStatus( 'ready' );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment