minor changes, auto-certificate

This commit is contained in:
mihalin 2021-09-16 00:33:36 +03:00
parent 73090a07ed
commit 62de96c500

View File

@ -5,7 +5,7 @@ if [ ! -z "${CUSTOM_CERT}" ]; then
echo "Use custom certificate"
if [ ! -f /cert/private.key ]; then
echo "Generate new certificate"
openssl req -newkey rsa:2048 -sha256 -nodes -keyout /cert/private.key -x509 -days 1000 -out /cert/public.pem -subj "/C=US/ST=Berlin/L=Berlin/O=my_org/CN=my_cn"
openssl req -newkey rsa:2048 -sha256 -nodes -keyout /cert/private.key -x509 -days 1000 -out /cert/public.pem -subj "/C=US/ST=Berlin/L=Berlin/O=my_org/CN=${WEBHOOK_HOST}"
fi
fi