Skip to content

Instantly share code, notes, and snippets.

View sbpipb's full-sized avatar
👋
looking for new opportunities.

Julian Macmang sbpipb

👋
looking for new opportunities.
View GitHub Profile
@sbpipb
sbpipb / gist:407c033b25bac4fb2353bf59807de8c7
Created February 20, 2018 12:42 — forked from mtigas/gist:952344
Mini tutorial for configuring client-side SSL certificates.

Client-side SSL

For excessively paranoid client authentication.

Using self-signed certificate.

Create a Certificate Authority root (which represents this server)

Organization & Common Name: Some human identifier for this server CA.

openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt