Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

update cert creation process based on William's suggestion #128

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/SSLCerts/GenerateCertificateSigningRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ Author: Clécio Varjão
openssl req -new -passin file:passphrase.txt -key server.key -out server.csr -subj "/C=CA/ST=British Columbia/L=Victoria/O=Government of the Province of British Columbia/OU=FLNRORD/CN=example.gov.bc.ca"
`

# Remove Passphrase from Key
`cp server.key server.key.org`
`openssl rsa -in server.key.org -passin file:passphrase.txt -out server.key`