Display the files which have been created.

This commit is contained in:
Hyperling 2023-07-06 06:50:31 -07:00
parent 51e29ae2ab
commit cf73304bfe

@ -16,7 +16,7 @@ mkdir -pv $DIR/../../Volumes/ReverseProxy/letsencrypt-certs
# Loop over the proxy configuration files and ensure they have certs.
ls $DIR/config/conf.d/*.* | while read file; do
filename=`basename $file`
echo "Checking $filename:"
echo "*** Checking $filename ***"
if [[ ! -d $CERT_DIR/$filename ]]; then
echo "Creating self-signed certs at $CERT_DIR/$filename."
mkdir -pv $CERT_DIR/$filename
@ -24,6 +24,7 @@ ls $DIR/config/conf.d/*.* | while read file; do
-out $CERT_DIR/$filename/fullchain.pem \
-keyout $CERT_DIR/$filename/privkey.pem \
-subj "/CN=$filename/O=$filename/C=XX"
ls -lh $CERT_DIR/$filename/*
else
echo "Certs already exist!"
fi