Compare commits

..

No commits in common. "22caa92b12df9b8786715445ee95befea8b174b8" and "e8470d789a3811e2fe3f6818fd9a6fea859ba71c" have entirely different histories.

3 changed files with 12 additions and 15 deletions

View File

@ -62,6 +62,12 @@ export BTCPAY_BASE_DIRECTORY=${REMOTE_DATA_PATH}
export BTCPAYGEN_EXCLUDE_FRAGMENTS="nginx-https;" export BTCPAYGEN_EXCLUDE_FRAGMENTS="nginx-https;"
export REVERSEPROXY_DEFAULT_HOST="$BTCPAY_USER_FQDN" export REVERSEPROXY_DEFAULT_HOST="$BTCPAY_USER_FQDN"
# if [ "\$NBITCOIN_NETWORK" != regtest ]; then
# cd ./contrib/FastSync
# ./load-utxo-set.sh
# cd -
# fi
# next we create fragments to customize various aspects of the system # next we create fragments to customize various aspects of the system
# this block customizes clightning to ensure the correct endpoints are being advertised # this block customizes clightning to ensure the correct endpoints are being advertised
# We want to advertise the correct ipv4 endpoint for remote hosts to get in touch. # We want to advertise the correct ipv4 endpoint for remote hosts to get in touch.
@ -72,18 +78,9 @@ services:
environment: environment:
LIGHTNINGD_OPT: | LIGHTNINGD_OPT: |
announce-addr-dns=true announce-addr-dns=true
bind-addr=ws::9736 experimental-websocket-port=9736
experimental-peer-storage experimental-peer-storage
experimental-offers experimental-offers
EOL
# if [ "$DEPLOY_CLBOSS_PLUGIN" = true ]; then
# cat >> "$SITE_PATH/btcpay.sh" <<EOL
# plugin=/root/.lightning/plugins/clboss
# EOL
# fi
cat >> "$SITE_PATH/btcpay.sh" <<EOL
ports: ports:
- "${CLIGHTNING_WEBSOCKET_PORT}:9736" - "${CLIGHTNING_WEBSOCKET_PORT}:9736"
expose: expose:
@ -91,6 +88,7 @@ cat >> "$SITE_PATH/btcpay.sh" <<EOL
EOF EOF
# run the setup script. # run the setup script.
. ./btcpay-setup.sh -i . ./btcpay-setup.sh -i

2
lnplay

@ -1 +1 @@
Subproject commit 7c4e3fb56b9f5aedd8fe68352ef6a019164b2f49 Subproject commit 53a11384308c9af5c26738290f07c6c86f426168

View File

@ -2,16 +2,15 @@
set -e set -e
export MAILGUN_SMTP_PASSWORD=
export DEPLOY_GHOST=true export DEPLOY_GHOST=true
export DEPLOY_CLBOSS_PLUGIN=false
export DEPLOY_NOSTR=false export DEPLOY_NOSTR=false
export DEPLOY_NEXTCLOUD=false export DEPLOY_NEXTCLOUD=false
export DEPLOY_GITEA=false export DEPLOY_GITEA=false
export GHOST_DEPLOY_SMTP=false export GHOST_DEPLOY_SMTP=false
export MAILGUN_FROM_ADDRESS= export MAILGUN_FROM_ADDRESS=
export MAILGUN_SMTP_USERNAME= export MAILGUN_SMTP_USERNAME=
export MAILGUN_SMTP_PASSWORD=
export SITE_LANGUAGE_CODES="en" export SITE_LANGUAGE_CODES="en"
export LANGUAGE_CODE="en" export LANGUAGE_CODE="en"
export NOSTR_ACCOUNT_PUBKEY= export NOSTR_ACCOUNT_PUBKEY=
@ -35,7 +34,7 @@ DEFAULT_DB_IMAGE="mariadb:10.11.2-jammy"
# run the docker stack. # run the docker stack.
export GHOST_IMAGE="ghost:5.85.0" export GHOST_IMAGE="ghost:5.78.0"
# TODO switch to mysql. May require intricate export work for existing sites. # TODO switch to mysql. May require intricate export work for existing sites.
# THIS MUST BE COMPLETED BEFORE v1 RELEASE # THIS MUST BE COMPLETED BEFORE v1 RELEASE