Skip to content

Instantly share code, notes, and snippets.

@RaphaelAudet
RaphaelAudet / tuto.md
Created April 5, 2022 07:51 — forked from barmic/tuto.md
Authentification par certificat avec nginx

Pour mettre en place une authentification par certificat avec nginx comme reverse proxy.

Création des certificats

Créer l'authorité de certification

openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
@RaphaelAudet
RaphaelAudet / 0_reuse_code.js
Last active August 29, 2015 14:15
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console