taler-deployment

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

commit 9b160f8b1d4195db7ad62efe4f8d19e85f2c73cf
parent 2ec005dd0147884cdd4fa90282250f4752904ff2
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Mon, 14 Mar 2016 12:16:44 +0100

moddifying bank updating/launching in order to match new directories'
structure

Diffstat:
Metc/nginx/sites-enabled/bank-test-ssl.site | 2+-
Metc/nginx/sites-enabled/bank-test.site | 2+-
Mrun_bank.sh | 4++--
3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/etc/nginx/sites-enabled/bank-test-ssl.site b/etc/nginx/sites-enabled/bank-test-ssl.site @@ -17,7 +17,7 @@ server { location / { uwsgi_pass django-test; - include /home/test/bank/TalerBank/uwsgi_params; + include /home/test/bank/django/uwsgi_params; } include conf.d/test.redirects; diff --git a/etc/nginx/sites-enabled/bank-test.site b/etc/nginx/sites-enabled/bank-test.site @@ -10,7 +10,7 @@ server { location / { uwsgi_pass django-test; - include /home/test/bank/TalerBank/uwsgi_params; + include /home/test/bank/django/uwsgi_params; } include conf.d/test.redirects; diff --git a/run_bank.sh b/run_bank.sh @@ -1,7 +1,7 @@ #!/bin/bash source $HOME/bank-venv/bin/activate -cd $HOME/bank/TalerBank/ +cd $HOME/bank/django/ bank_port=$(cat $HOME/config/bankport) @@ -13,4 +13,4 @@ fi # Since GNUnet ARM sends SIGTERM to # kill services, we want uwsgi to die on that # signal instead of reloading -exec uwsgi --master --die-on-term --socket ":$bank_port" --module TalerBank.wsgi +exec uwsgi --master --die-on-term --socket ":$bank_port" --module bank_project.wsgi