xsshunter/docker-entrypoint.sh

9 lines
344 B
Bash
Raw Normal View History

2021-05-31 19:06:40 +00:00
#!/usr/bin/env bash
echo "Initializing SSL/TLS..."
# Set up Greenlock
# Test if --maintainer-email is required, we can set it via environment variables...
npx greenlock init --config-dir /app/greenlock.d --maintainer-email $SSL_CONTACT_EMAIL
npx greenlock add --subject $HOSTNAME --altnames "$HOSTNAME"
echo "Starting server..."
node server.js