From a7a929b0465489decae25b9c1a31dc3f37a59f30 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 6 Oct 2014 17:32:42 +0200 Subject: [PATCH] fix new sandbox path in docker conf --- deploy/nginx-app.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/nginx-app.conf b/deploy/nginx-app.conf index 20e6ebc..61aacc1 100644 --- a/deploy/nginx-app.conf +++ b/deploy/nginx-app.conf @@ -2,7 +2,7 @@ # the upstream component nginx needs to connect to upstream django { - server unix:/opt/TimeSide/timeside/server/sandbox/app.sock; # for a file socket + server unix:/opt/TimeSide/examples/sandbox/app.sock; # for a file socket # server 127.0.0.1:8001; # for a web port socket (we'll use this first) } -- 2.39.5