2022-05-20 15:06:41 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-10-29 15:34:17 +00:00
|
|
|
set -eu
|
2022-07-27 16:38:33 +00:00
|
|
|
cd "$(dirname "$0")"
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
# Create the nginx config file which covers all domains.
|
2022-09-28 17:59:01 +00:00
|
|
|
bash -c ./stub/nginx_config.sh
|
2022-08-24 14:11:50 +00:00
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
# redirect all docker commands to the remote host.
|
|
|
|
export DOCKER_HOST="ssh://ubuntu@$PRIMARY_WWW_FQDN"
|
|
|
|
|
|
|
|
for DOMAIN_NAME in ${DOMAIN_LIST//,/ }; do
|
|
|
|
export DOMAIN_NAME="$DOMAIN_NAME"
|
|
|
|
export SITE_PATH="$SITES_PATH/$DOMAIN_NAME"
|
|
|
|
|
|
|
|
# source the site path so we know what features it has.
|
|
|
|
source ../../reset_env.sh
|
|
|
|
source "$SITE_PATH/site_definition"
|
|
|
|
source ../../domain_env.sh
|
|
|
|
|
|
|
|
|
|
|
|
### Let's check to ensure all the requiredsettings are set.
|
|
|
|
if [ "$DEPLOY_GHOST" = true ]; then
|
|
|
|
if [ -z "$GHOST_MYSQL_PASSWORD" ]; then
|
|
|
|
echo "ERROR: Ensure GHOST_MYSQL_PASSWORD is configured in your site_definition."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$GHOST_MYSQL_ROOT_PASSWORD" ]; then
|
|
|
|
echo "ERROR: Ensure GHOST_MYSQL_ROOT_PASSWORD is configured in your site_definition."
|
|
|
|
exit 1
|
|
|
|
fi
|
2022-08-24 14:11:50 +00:00
|
|
|
fi
|
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
if [ "$DEPLOY_GITEA" = true ]; then
|
|
|
|
if [ -z "$GITEA_MYSQL_PASSWORD" ]; then
|
|
|
|
echo "ERROR: Ensure GITEA_MYSQL_PASSWORD is configured in your site_definition."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ -z "$GITEA_MYSQL_ROOT_PASSWORD" ]; then
|
|
|
|
echo "ERROR: Ensure GITEA_MYSQL_ROOT_PASSWORD is configured in your site_definition."
|
|
|
|
exit 1
|
|
|
|
fi
|
2022-08-24 14:11:50 +00:00
|
|
|
fi
|
2022-09-09 18:00:07 +00:00
|
|
|
|
|
|
|
if [ "$DEPLOY_NEXTCLOUD" = true ]; then
|
|
|
|
if [ -z "$NEXTCLOUD_MYSQL_ROOT_PASSWORD" ]; then
|
|
|
|
echo "ERROR: Ensure NEXTCLOUD_MYSQL_ROOT_PASSWORD is configured in your site_definition."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$NEXTCLOUD_MYSQL_PASSWORD" ]; then
|
|
|
|
echo "ERROR: Ensure NEXTCLOUD_MYSQL_PASSWORD is configured in your site_definition."
|
|
|
|
exit 1
|
|
|
|
fi
|
2022-08-24 14:11:50 +00:00
|
|
|
fi
|
|
|
|
|
2022-10-08 16:44:46 +00:00
|
|
|
if [ "$DEPLOY_NOSTR_RELAY" = true ]; then
|
2022-09-09 18:00:07 +00:00
|
|
|
if [ -z "$NOSTR_ACCOUNT_PUBKEY" ]; then
|
|
|
|
echo "ERROR: Ensure NOSTR_ACCOUNT_PUBKEY is configured in your site_definition."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$NOSTR_ACCOUNT_PUBKEY" ]; then
|
|
|
|
echo "ERROR: Ensure NOSTR_ACCOUNT_PUBKEY is configured in your site_definition."
|
|
|
|
exit 1
|
2022-10-22 00:04:03 +00:00
|
|
|
fi
|
2022-08-24 14:11:50 +00:00
|
|
|
fi
|
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
if [ -z "$DUPLICITY_BACKUP_PASSPHRASE" ]; then
|
|
|
|
echo "ERROR: Ensure DUPLICITY_BACKUP_PASSPHRASE is configured in your site_definition."
|
2022-08-24 14:11:50 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
if [ -z "$DOMAIN_NAME" ]; then
|
|
|
|
echo "ERROR: Ensure DOMAIN_NAME is configured in your site_definition."
|
2022-08-24 14:11:50 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
if [ -z "$NOSTR_ACCOUNT_PUBKEY" ]; then
|
|
|
|
echo "ERROR: You MUST specify a Nostr public key. This is how you get all your social features."
|
|
|
|
echo "INFO: Go to your site_definition file and set the NOSTR_ACCOUNT_PUBKEY variable."
|
2022-08-24 14:11:50 +00:00
|
|
|
exit 1
|
2022-09-09 18:00:07 +00:00
|
|
|
fi
|
2022-08-15 13:41:53 +00:00
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
TOR_CONFIG_PATH=
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
done
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-09-28 17:59:01 +00:00
|
|
|
./stop_docker_stacks.sh
|
2022-05-20 15:06:41 +00:00
|
|
|
|
|
|
|
if [ "$DEPLOY_ONION_SITE" = true ]; then
|
|
|
|
# ensure the tor image is built
|
|
|
|
docker build -t tor:latest ./tor
|
|
|
|
|
|
|
|
# if the tor folder doesn't exist, we provision a new one. Otherwise you need to restore.
|
|
|
|
# this is how we generate a new torv3 endpoint.
|
2022-09-09 18:00:07 +00:00
|
|
|
if ! ssh "$PRIMARY_WWW_FQDN" "[ -d $REMOTE_HOME/tor/www ]"; then
|
|
|
|
ssh "$PRIMARY_WWW_FQDN" "mkdir -p $REMOTE_HOME/tor"
|
2022-05-20 15:06:41 +00:00
|
|
|
TOR_CONFIG_PATH="$(pwd)/tor/torrc-init"
|
|
|
|
export TOR_CONFIG_PATH="$TOR_CONFIG_PATH"
|
|
|
|
docker stack deploy -c ./tor.yml torstack
|
|
|
|
sleep 20
|
|
|
|
docker stack rm torstack
|
|
|
|
sleep 20
|
|
|
|
fi
|
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
ONION_ADDRESS="$(ssh "$PRIMARY_WWW_FQDN" sudo cat "${REMOTE_HOME}"/tor/www/hostname)"
|
2022-05-20 15:06:41 +00:00
|
|
|
export ONION_ADDRESS="$ONION_ADDRESS"
|
|
|
|
|
|
|
|
# # Since we run a separate ghost process, we create a new directory and symlink it to the original
|
2022-09-09 18:00:07 +00:00
|
|
|
# if ! ssh "$PRIMARY_WWW_FQDN" "[ -L $REMOTE_HOME/tor_ghost ]"; then
|
|
|
|
# ssh "$PRIMARY_WWW_FQDN" ln -s "$REMOTE_HOME/ghost_site/themes $REMOTE_HOME/tor_ghost/themes"
|
2022-05-20 15:06:41 +00:00
|
|
|
# fi
|
|
|
|
fi
|
|
|
|
|
2022-10-30 16:59:24 +00:00
|
|
|
# nginx gets deployed first since it "owns" the docker networks of downstream services.
|
2022-10-22 00:04:03 +00:00
|
|
|
./stub/nginx_yml.sh
|
2022-10-08 16:44:46 +00:00
|
|
|
|
2022-10-30 16:59:24 +00:00
|
|
|
# next run our application stub logic. These deploy the apps too if configured to do so.
|
2022-10-22 00:04:03 +00:00
|
|
|
./stub/ghost_yml.sh
|
|
|
|
./stub/nextcloud_yml.sh
|
|
|
|
./stub/gitea_yml.sh
|
2022-09-28 22:20:17 +00:00
|
|
|
|
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
# # start a browser session; point it to port 80 to ensure HTTPS redirect.
|
|
|
|
# wait-for-it -t 320 "$PRIMARY_WWW_FQDN:80"
|
|
|
|
# wait-for-it -t 320 "$PRIMARY_WWW_FQDN:443"
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
# # open bowser tabs.
|
|
|
|
# if [ "$DEPLOY_GHOST" = true ]; then
|
|
|
|
# xdg-open "http://$PRIMARY_WWW_FQDN" > /dev/null 2>&1
|
|
|
|
# fi
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
# if [ "$DEPLOY_NEXTCLOUD" = true ]; then
|
|
|
|
# xdg-open "http://$NEXTCLOUD_FQDN" > /dev/null 2>&1
|
|
|
|
# fi
|
2022-05-20 15:06:41 +00:00
|
|
|
|
2022-09-09 18:00:07 +00:00
|
|
|
# if [ "$DEPLOY_GITEA" = true ]; then
|
|
|
|
# xdg-open "http://$GITEA_FQDN" > /dev/null 2>&1
|
|
|
|
# fi
|
|
|
|
# #fi
|