commit a0779a87484c55217a6e421187def904c174189c
parent db69a050fb52e9535ebf443afc671d2706c20622
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Mon, 26 Nov 2018 11:06:31 +0100
fix last commit
":/" cannot be appended inside @green|@blue blocks.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/etc/nginx/sites-enabled/test.site b/etc/nginx/sites-enabled/test.site
@@ -58,12 +58,12 @@ server {
location @green {
add_header X-Taler-Deployment-Color green;
root /home/test-green/auditor;
- proxy_pass http://unix:/home/test-green/sockets/auditor.http:/;
+ proxy_pass http://unix:/home/test-green/sockets/auditor.http;
}
location @blue {
add_header X-Taler-Deployment-Color blue;
root /home/test-blue/auditor;
- proxy_pass http://unix:/home/test-blue/sockets/auditor.http:/;
+ proxy_pass http://unix:/home/test-blue/sockets/auditor.http;
}
location /service {
proxy_pass http://unix:/home/test/sockets/auditor.http:/;