summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-11-26 11:04:31 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2018-11-26 11:04:31 +0100
commitdb69a050fb52e9535ebf443afc671d2706c20622 (patch)
treede7abd401d8ed9bcdb192f5b66372ed6cdf197a8
parent134372d5598eb959964f1169cc2b8dbc6db78ffc (diff)
downloaddeployment-db69a050fb52e9535ebf443afc671d2706c20622.tar.gz
deployment-db69a050fb52e9535ebf443afc671d2706c20622.tar.bz2
deployment-db69a050fb52e9535ebf443afc671d2706c20622.zip
nginx: use ":/" after specifying the socket file.
-rw-r--r--etc/nginx/sites-enabled/test.site6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/nginx/sites-enabled/test.site b/etc/nginx/sites-enabled/test.site
index 1045e0a..478dce4 100644
--- a/etc/nginx/sites-enabled/test.site
+++ b/etc/nginx/sites-enabled/test.site
@@ -58,15 +58,15 @@ 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;
+ proxy_pass http://unix:/home/test/sockets/auditor.http:/;
}
location / {