Make Sure You Are Square With Your God Before Trying To Merge This
This commit is contained in:
11
setup.sh
11
setup.sh
@@ -1,12 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
mkdir -p certs
|
||||
|
||||
openssl genrsa -out certs/mycert.key 2048
|
||||
|
||||
openssl req -new -key certs/mycert.key -out certs/mycert.csr -subj "/C=/ST=/L=/O=/OU=/CN=/emailAddress="
|
||||
|
||||
openssl x509 -req -days 365 -in certs/mycert.csr -signkey certs/mycert.key -out certs/mycert.crt
|
||||
mkdir -p app/certs
|
||||
openssl genrsa -out app/certs/cert.key 2048
|
||||
openssl req -new -key app/certs/cert.key -out app/certs/cert.csr -subj "/C=/ST=/L=/O=/OU=/CN=/emailAddress="
|
||||
openssl x509 -req -days 365 -in app/certs/cert.csr -signkey app/certs/cert.key -out app/certs/cert.crt
|
||||
|
||||
LOCATION="$(pwd)"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user