taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 063cddee0899e821c78d90b1fde17837046c5fae
parent eb247809049e8742f906dab230e4b869dd904ef8
Author: Javier Sepulveda <javier.sepulveda@uv.es>
Date:   Fri, 31 Mar 2023 08:59:25 +0200

Fix: Increase TTL sandbox and Nexus + Remove certbot base domain

Diffstat:
Mnetzbon/config_launch_libeufin.sh | 8++++----
Mnetzbon/config_nginx.sh | 3+--
2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/netzbon/config_launch_libeufin.sh b/netzbon/config_launch_libeufin.sh @@ -120,9 +120,9 @@ systemctl enable --now libeufin-sandbox say "DONE" say "Waiting for sandbox..." -curl --max-time 2 \ +curl --max-time 25 \ --retry-connrefused \ - --retry-delay 1 \ + --retry-delay 3 \ --retry 10 \ ${SANDBOX_URL} &> /dev/null say "DONE" @@ -139,9 +139,9 @@ systemctl enable --now libeufin-nexus say "DONE" say "Waiting for Nexus..." -curl --max-time 2 \ +curl --max-time 25 \ --retry-connrefused \ - --retry-delay 1 \ + --retry-delay 3 \ --retry 10 \ ${LIBEUFIN_NEXUS_URL} &> /dev/null say "DONE" diff --git a/netzbon/config_nginx.sh b/netzbon/config_nginx.sh @@ -19,8 +19,7 @@ sed -i "s/http:\/\/bank./https:\/\/bank./g" /etc/libeufin/demobank-ui-settings.j say "Obtaining TLS certificates" - certbot -d ${DOMAIN_NAME} \ - -d backend.${DOMAIN_NAME} \ + certbot -d backend.${DOMAIN_NAME} \ -d bank.${DOMAIN_NAME} \ -d exchange.${DOMAIN_NAME} fi