taler-deployment

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

commit aa712e77ba1596ca9f0da865c101ed7916458a1a
parent 2d75822e20f52dcefa7919a116ee94452883ae2b
Author: Florian Dold <florian.dold@gmail.com>
Date:   Mon, 29 Feb 2016 14:36:16 +0100

remove legacy django script

Diffstat:
Ddjango_wsgi.sh | 17-----------------
1 file changed, 0 insertions(+), 17 deletions(-)

diff --git a/django_wsgi.sh b/django_wsgi.sh @@ -1,17 +0,0 @@ -#!/bin/bash - -# Launch uwsgi: i.e. connects django to nginx - -set -e -pids=$(pidof uwsgi || true) -if [[ ! -z "$pids" ]]; then - kill $pids || true - sleep 1 - kill -9 $pids || true -fi -echo "Killed previous instance" - -source $HOME/test_bank_login/bin/activate -cd $HOME/bank/TalerBank/ -nohup uwsgi --socket :8000 --module TalerBank.wsgi | tee $HOME/nohup.uwsgi.out & -disown