improve entrypoint.sh

- replace tabs by soft spaces
- shellcheck compliant
- generate cert only if not present or if cert is invalid
This commit is contained in:
nierdz 2018-12-13 10:54:51 +01:00
parent f08e84df77
commit b498cc03c3
1 changed files with 10 additions and 8 deletions

View File

@ -5,15 +5,17 @@ set -o pipefail
set -o nounset set -o nounset
# Check if $DOMAIN is set # Check if $DOMAIN is set
if [ -z $DOMAIN ]; then if [ -z "$DOMAIN" ]; then
echo -e "You did not set \$DOMAIN variable at run time. No certificate will be registered.\n" echo -e "You did not set \$DOMAIN variable at run time. No certificate will be registered.\n"
echo -e "If you want to define it on command line here is an example:\n" echo -e "If you want to define it on command line here is an example:\n"
echo -e "docker run -d -p 80:80 -p 443:443 -e DOMAIN=example.com\n" echo -e "docker run -d -p 80:80 -p 443:443 -e DOMAIN=example.com\n"
else else
# Generate SSL cert if [[ ! -f "/root/.acme.sh/${DOMAIN}/${DOMAIN}.cer" ]] || ! openssl x509 -checkend 0 -in "/root/.acme.sh/${DOMAIN}/${DOMAIN}.cer"; then
/root/.acme.sh/acme.sh --issue --standalone -d ${DOMAIN} -d www.${DOMAIN} # Generate SSL cert
# Generate pfx /root/.acme.sh/acme.sh --issue --standalone -d "${DOMAIN}" -d "www.${DOMAIN}"
openssl pkcs12 -export -out /webminerpool/certificate.pfx -inkey /root/.acme.sh/${DOMAIN}/${DOMAIN}.key -in /root/.acme.sh/${DOMAIN}/${DOMAIN}.cer -certfile /root/.acme.sh/${DOMAIN}/fullchain.cer -passin pass:miner -passout pass:miner # Generate pfx
openssl pkcs12 -export -out /webminerpool/certificate.pfx -inkey "/root/.acme.sh/${DOMAIN}/${DOMAIN}.key" -in "/root/.acme.sh/${DOMAIN}/${DOMAIN}.cer" -certfile "/root/.acme.sh/${DOMAIN}/fullchain.cer" -passin pass:miner -passout pass:miner
fi
fi fi
# Start server # Start server