Skip to content

Instantly share code, notes, and snippets.

View atasky's full-sized avatar
👀
I may be slow to respond.

ataSky atasky

👀
I may be slow to respond.
View GitHub Profile
@atasky
atasky / create_ssl_client_certificate.sh
Created June 27, 2019 17:01 — forked from marcelog/create_ssl_client_certificate.sh
Create SSL certificates for your clients by using your own CA
openssl genrsa -des3 -out client.key 4096
openssl req -new -key client.key -out client.csr
openssl x509 -req -days 3650 -in client.csr -CA ca.crt -CAkey ca.key -set_serial 01 -out client.crt