summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2017-06-23 01:00:15 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2017-06-23 01:00:39 +0200
commit0ca9654ea3c3779fab23840a83cc53002cf9138a (patch)
treefa3e33b4f6724e8f2997ec05d48a1a282fc02dc0
parent9afd7335a961815867981fc4396f63bc46d7aeef (diff)
downloaddeployment-0ca9654ea3c3779fab23840a83cc53002cf9138a.tar.gz
deployment-0ca9654ea3c3779fab23840a83cc53002cf9138a.tar.bz2
deployment-0ca9654ea3c3779fab23840a83cc53002cf9138a.zip
no /admin/add/incoming ruote for bank@test
-rw-r--r--etc/nginx/sites-enabled/test.site12
1 files changed, 0 insertions, 12 deletions
diff --git a/etc/nginx/sites-enabled/test.site b/etc/nginx/sites-enabled/test.site
index 44f6e0d..5db30ad 100644
--- a/etc/nginx/sites-enabled/test.site
+++ b/etc/nginx/sites-enabled/test.site
@@ -322,18 +322,6 @@ server {
include /etc/nginx/uwsgi_params;
}
- location /admin/add/incoming {
- # Redirection technique explainted at
- # https://www.nginx.com/resources/wiki/start/topics/depth/ifisevil/
- error_page 418 = @blue-add-incoming;
- error_page 419 = @green-add-incoming;
- recursive_error_pages on;
- if ($http_x_taler_deployment_color ~ "blue") { return 418; }
- if ($http_x_taler_deployment_color ~ "green") { return 419; }
- uwsgi_pass unix:/home/test/sockets/bank-admin.uwsgi;
- include /etc/nginx/uwsgi_params;
- }
-
location / {
# Redirection technique explainted at
# https://www.nginx.com/resources/wiki/start/topics/depth/ifisevil/