taler-deployment

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

commit 4df2efe8814cd6a4d2ec336207d745c464c7ae41
parent 1bfff791cb555bc5965955f1fb27a25240e389fd
Author: MS <ms@taler.net>
Date:   Fri, 28 Oct 2022 12:36:34 +0200

frontends log rotation

Diffstat:
Mdocker/hybrid/images/merchant/startup.sh | 8++++----
Mdocker/hybrid/test-docker-gv.sh | 2+-
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/docker/hybrid/images/merchant/startup.sh b/docker/hybrid/images/merchant/startup.sh @@ -87,16 +87,16 @@ export TALER_ENV_URL_INTRO=`taler-config -c /config/deployment.conf -s taler-dep export TALER_ENV_URL_BANK=`taler-config -c /config/deployment.conf -s taler-deployment -o bank-url` echo -n "Launch blog..." -${HOME}/.local/bin/taler-merchant-demos -c /config/taler.conf --http-port 8080 blog & +${HOME}/.local/bin/taler-merchant-demos -c /config/taler.conf --http-port 8080 blog 2>&1 | rotatelogs -e /logs/blog-%Y-%m-%d 86400 & echo DONE echo -n "Launch donations..." -${HOME}/.local/bin/taler-merchant-demos -c /config/taler.conf --http-port 8081 donations & +${HOME}/.local/bin/taler-merchant-demos -c /config/taler.conf --http-port 8081 donations 2>&1 | rotatelogs -e /logs/donations-%Y-%m-%d 86400 & echo DONE echo -n "Launch Survey..." -${HOME}/.local/bin/taler-merchant-demos -c /config/taler.conf --http-port 8082 survey & +${HOME}/.local/bin/taler-merchant-demos -c /config/taler.conf --http-port 8082 survey 2>&1 | rotatelogs -e /logs/survey-%Y-%m-%d 86400 & echo DONE echo -n "Launch Landing..." -${HOME}/.local/bin/taler-merchant-demos -c /config/taler.conf --http-port 8083 landing & +${HOME}/.local/bin/taler-merchant-demos -c /config/taler.conf --http-port 8083 landing 2>&1 | rotatelogs -e /logs/landing-%Y-%m-%d 86400 & echo DONE echo -n Creating a reserve for tips... diff --git a/docker/hybrid/test-docker-gv.sh b/docker/hybrid/test-docker-gv.sh @@ -1,6 +1,6 @@ #!/bin/bash -CURRENCY=EUR +CURRENCY=TESTKUDOS HOST="test.taler.net" # HOST="int.taler.net"