2022-05-20 15:06:41 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-05-28 03:07:17 +00:00
|
|
|
set -ex
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-05-24 18:20:59 +00:00
|
|
|
# let's do a refresh of the certificates. Let's Encrypt will not run if it's not time.
|
|
|
|
docker pull certbot/certbot:latest
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-08-03 14:50:45 +00:00
|
|
|
# when deploying to AWS, www exists on a separate IP address from btcpay, etc.
|
2022-05-24 18:20:59 +00:00
|
|
|
# thus, we structure the certificate accordingly.
|
2022-05-20 15:06:41 +00:00
|
|
|
if [ "$VPS_HOSTING_TARGET" = aws ]; then
|
|
|
|
docker run -it --rm \
|
|
|
|
--name certbot \
|
|
|
|
-p 80:80 \
|
|
|
|
-p 443:443 \
|
2022-05-24 18:20:59 +00:00
|
|
|
-v "$REMOTE_HOME/letsencrypt":/etc/letsencrypt \
|
|
|
|
-v /var/lib/letsencrypt:/var/lib/letsencrypt \
|
|
|
|
-v "$REMOTE_HOME/letsencrypt_logs":/var/log/letsencrypt \
|
|
|
|
certbot/certbot certonly -v --noninteractive --agree-tos --key-type ecdsa --standalone --expand -d "$DOMAIN_NAME" -d "$FQDN" -d "$NEXTCLOUD_FQDN" -d "$GITEA_FQDN" --email "$CERTIFICATE_EMAIL_ADDRESS"
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-05-24 18:20:59 +00:00
|
|
|
elif [ "$VPS_HOSTING_TARGET" = lxd ]; then
|
|
|
|
# with the lxd side, we are trying to expose ALL OUR services from one IP address, which terminates
|
|
|
|
# at a cachehing reverse proxy that runs nginx.
|
|
|
|
docker run -it --rm \
|
|
|
|
--name certbot \
|
|
|
|
-p 80:80 \
|
|
|
|
-p 443:443 \
|
|
|
|
-v "$REMOTE_HOME/letsencrypt":/etc/letsencrypt \
|
|
|
|
-v /var/lib/letsencrypt:/var/lib/letsencrypt \
|
|
|
|
-v "$REMOTE_HOME/letsencrypt_logs":/var/log/letsencrypt \
|
2022-08-15 13:40:10 +00:00
|
|
|
certbot/certbot certonly -v --noninteractive --agree-tos --key-type ecdsa --standalone --expand -d "$DOMAIN_NAME" -d "$FQDN" -d "$BTCPAY_USER_FQDN" -d "$NEXTCLOUD_FQDN" -d "$GITEA_FQDN" -d "$NOSTR_FQDN" --email "$CERTIFICATE_EMAIL_ADDRESS"
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-05-24 18:20:59 +00:00
|
|
|
fi
|