commit 4fb425b524a89f10e156104d3023d5e3b52e5f7c parent b16dc69f561a7887df8387ac49a1852934a1decc Author: Florian Dold <florian.dold@gmail.com> Date: Wed, 27 Apr 2016 01:13:33 +0200 404 for landing uwsgi Diffstat:
| M | bin/taler-deployment-landing | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/bin/taler-deployment-landing b/bin/taler-deployment-landing @@ -9,4 +9,5 @@ export PATH="$base/deployment":$PATH ulimit -c $((100 * 1024)) mkdir -p $HOME/sockets -exec uwsgi --check-static $HOME/landing --socket $HOME/sockets/landing.uwsgi --chmod-socket=660 +# run uwsgi without an app, and turn 500 into 404 +exec uwsgi --check-static $HOME/landing --socket $HOME/sockets/landing.uwsgi --chmod-socket=660 --error-route-status "500 return:404 Not Found"