Skip to content

Instantly share code, notes, and snippets.

View Sigtechnica's full-sized avatar

Siggy Sigtechnica

  • Sigtechnica
  • Belgium
View GitHub Profile
@Sigtechnica
Sigtechnica / generate_self_signed_certification.md
Created February 19, 2024 14:39 — forked from taoyuan/generate_self_signed_certification.md
Generation of a Self Signed Certificate

Generation of a Self Signed Certificate

Generation of a self-signed SSL certificate involves a simple 3-step procedure:

STEP 1: Create the server private key

openssl genrsa -out cert.key 2048

STEP 2: Create the certificate signing request (CSR)

openssl req -new -key cert.key -out cert.csr