From c3ca59ac93d79611e1aa1c9f4232f61dc3742c83 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 11 Nov 2020 12:55:59 +0100 Subject: [PATCH] :bug: Fix devenv nginx config. --- docker/devenv/files/nginx.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/devenv/files/nginx.conf b/docker/devenv/files/nginx.conf index e59675deb..2ae400e69 100644 --- a/docker/devenv/files/nginx.conf +++ b/docker/devenv/files/nginx.conf @@ -60,7 +60,7 @@ http { etag off; location / { - root /home/uxbox/uxbox/frontend/resources/public; + root /home/penpot/penpot/frontend/resources/public; try_files $uri /index.html; add_header Cache-Control "no-cache, max-age=0"; } @@ -74,7 +74,7 @@ http { } location /playground { - alias /home/uxbox/uxbox/experiments/; + alias /home/penpot/penpot/experiments/; add_header Cache-Control "no-cache, max-age=0"; autoindex on; } @@ -86,7 +86,7 @@ http { } location /media { - alias /home/uxbox/uxbox/backend/resources/public/media; + alias /home/penpot/penpot/backend/resources/public/media; } } }