Add make-selfsigned-https script

This commit is contained in:
zkldi
2021-10-27 20:59:22 +01:00
parent 98f924abd7
commit 9232930ac7
+10
View File
@@ -0,0 +1,10 @@
#! /bin/bash
# This command is for dev servers only! You should use this to
# create a self-signed HTTPS certificate for local dev.
# That is it. This is not secure.
mkdir -p cert
yes "" | openssl req -x509 -newkey rsa:4096 -keyout ./cert/key.pem -out ./cert/cert.pem -sha256 -days 365 --nodes &> /dev/null
echo "Created HTTPS Certificates!"