sovereign-stack/deployment/www/stub/nostr_yml.sh

86 lines
2.0 KiB
Bash
Raw Normal View History

2022-11-14 01:23:48 +00:00
#!/bin/bash
set -eu
2022-11-14 01:23:48 +00:00
cd "$(dirname "$0")"
2022-11-15 20:59:08 +00:00
docker pull "$NOSTR_RELAY_IMAGE"
2022-11-14 01:23:48 +00:00
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 "$RESPOSITORY_PATH/reset_env.sh"
source "$SITE_PATH/site_definition"
source "$RESPOSITORY_PATH/domain_env.sh"
if [ -n "$NOSTR_ACCOUNT_PUBKEY" ]; then
2022-11-14 01:23:48 +00:00
REMOTE_NOSTR_PATH="$REMOTE_HOME/nostr"
NOSTR_PATH="$REMOTE_NOSTR_PATH/$DOMAIN_NAME"
2022-11-15 20:59:08 +00:00
NOSTR_CONFIG_PATH="$SITE_PATH/webstack/nostr.config"
2022-11-14 01:23:48 +00:00
ssh "$PRIMARY_WWW_FQDN" mkdir -p "$NOSTR_PATH/data" "$NOSTR_PATH/db"
export STACK_TAG="nostr-$DOMAIN_IDENTIFIER"
export DOCKER_YAML_PATH="$SITE_PATH/webstack/nostr.yml"
NET_NAME="nostrnet-$DOMAIN_IDENTIFIER"
DBNET_NAME="nostrdbnet-$DOMAIN_IDENTIFIER"
# here's the NGINX config. We support ghost and nextcloud.
echo "" > "$DOCKER_YAML_PATH"
cat >>"$DOCKER_YAML_PATH" <<EOL
version: "3.8"
services:
${STACK_TAG}:
image: ${NOSTR_RELAY_IMAGE}
volumes:
- ${NOSTR_PATH}/data:/usr/src/app/db
# environment:
# - USER_UID=1000
networks:
- ${NET_NAME}
2022-11-15 20:59:08 +00:00
configs:
- source: nostr-config
target: /usr/src/app/config.toml
2022-11-14 01:23:48 +00:00
deploy:
restart_policy:
condition: on-failure
networks:
2022-11-15 20:59:08 +00:00
${NET_NAME}:
name: "reverse-proxy_${NET_NAME}-en"
external: true
configs:
nostr-config:
file: ${NOSTR_CONFIG_PATH}
EOL
# documentation: https://git.sr.ht/~gheartsfield/nostr-rs-relay/tree/0.7.0/item/config.toml
cat >>"$NOSTR_CONFIG_PATH" <<EOL
[info]
relay_url = "wss://${NOSTR_FQDN}/"
name = "${DOMAIN_NAME}"
# administrative contact pubkey TODO
#pubkey = ""
[options]
reject_future_seconds = 1800
2022-11-14 01:23:48 +00:00
2022-11-15 20:59:08 +00:00
[limits]
messages_per_sec = 3
#max_event_bytes = 131072
2022-11-14 01:23:48 +00:00
EOL
if [ "$STOP_SERVICES" = false ]; then
docker stack deploy -c "$DOCKER_YAML_PATH" "$DOMAIN_IDENTIFIER-nostr-$LANGUAGE_CODE"
sleep 1
fi
2022-11-14 01:23:48 +00:00
fi
done