From 3ec001de44a293c4c280bed522f2077b5a8ba947 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 21 Nov 2025 12:30:49 +0100 Subject: [PATCH] :wrench: Add nitrate url to devenv nginx (#7800) --- docker/devenv/files/nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/devenv/files/nginx.conf b/docker/devenv/files/nginx.conf index 45f0dcc6bf..757055af41 100644 --- a/docker/devenv/files/nginx.conf +++ b/docker/devenv/files/nginx.conf @@ -141,6 +141,10 @@ http { proxy_pass http://127.0.0.1:5000; } + location /nitrate/ { + proxy_pass http://127.0.0.1:3000/; + } + location /playground { alias /home/penpot/penpot/experiments/; add_header Cache-Control "no-cache, max-age=0";