docker-compose environment for the entire v.st system
https://v.st/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
542 B
27 lines
542 B
#!/bin/bash
|
|
die() { echo >&2 "$@" ; exit 1 ; }
|
|
|
|
ENV=env.production
|
|
if [ ! -r "$ENV" ]; then
|
|
die "$ENV: not found?"
|
|
fi
|
|
|
|
source env.production
|
|
|
|
if [ -z "${DOMAIN_NAME}" ]; then
|
|
die "DOMAIN_NAME not set"
|
|
fi
|
|
|
|
certdir="data/certbot/conf/live/${DOMAIN_NAME}"
|
|
mkdir -p "$certdir" || die "$certdir: unable to make"
|
|
|
|
openssl req \
|
|
-x509 \
|
|
-newkey rsa:2048 \
|
|
-keyout "$certdir/privkey.pem" \
|
|
-out "$certdir/fullchain.pem" \
|
|
-sha256 \
|
|
-nodes \
|
|
-days 365 \
|
|
-subj "/CN=${DOMAIN_NAME}'" \
|
|
|| die "$certdir/privkey.pem: unable to create temp key"
|
|
|