mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 09:28:12 +03:00
Add make-selfsigned-https script
This commit is contained in:
Executable
+10
@@ -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!"
|
||||
Reference in New Issue
Block a user