Skip to content

Instantly share code, notes, and snippets.

View jacobbogers's full-sized avatar
😀
Hi

Jacob Bogers jacobbogers

😀
Hi
  • N/A
  • 12:44 (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
# 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';