commit db69a050fb52e9535ebf443afc671d2706c20622 parent 134372d5598eb959964f1169cc2b8dbc6db78ffc Author: Marcello Stanisci <stanisci.m@gmail.com> Date: Mon, 26 Nov 2018 11:04:31 +0100 nginx: use ":/" after specifying the socket file. Diffstat:
| M | etc/nginx/sites-enabled/test.site | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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 / {