Skip to content

Instantly share code, notes, and snippets.

View jacobbogers's full-sized avatar
😀
Hi

Jacob Bogers jacobbogers

😀
Hi
  • N/A
  • 05:09 (UTC +02:00)
View GitHub Profile
@jacobbogers
jacobbogers / self-signed-certificate-with-custom-ca.md
Created November 26, 2019 20:52 — forked from fntlnz/self-signed-certificate-with-custom-ca.md
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096
@jacobbogers
jacobbogers / self-signed-certificate-with-custom-ca.md
Created November 26, 2019 20:52 — forked from fntlnz/self-signed-certificate-with-custom-ca.md
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096
@jacobbogers
jacobbogers / gist:8afee3af8cdd6821841f080fec1bfbef
Created March 19, 2019 17:40
node-gyp issues with npm posix module
root@17567133b053:/home/eds/eds-relay-service# npm install [email protected] --save --verbose
npm info it worked if it ends with ok
npm verb cli [ '/root/.nvm/versions/node/v10.8.0/bin/node',
npm verb cli '/root/.nvm/versions/node/v10.8.0/bin/npm',
npm verb cli 'install',
npm verb cli '[email protected]',
npm verb cli '--save',
npm verb cli '--verbose' ]
npm info using [email protected]
npm info using [email protected]
# initialization file (not found)
@jacobbogers
jacobbogers / gulpfile.js
Created June 4, 2016 16:31 — forked from Sigmus/gulpfile.js
gulpfile.js with browserify, reactify, watchify and gulp-notify.
var source = require('vinyl-source-stream');
var gulp = require('gulp');
var gutil = require('gulp-util');
var browserify = require('browserify');
var reactify = require('reactify');
var watchify = require('watchify');
var notify = require("gulp-notify");
var scriptsDir = './scripts';
var buildDir = './build';