From a0fef67c163220236d3b50f31f00e18816f0cd5d Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 9 Feb 2026 19:09:19 +0100 Subject: [PATCH] :sparkles: Update devenv nginx to serve locally builded plugins --- docker/devenv/files/nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/devenv/files/nginx.conf b/docker/devenv/files/nginx.conf index ca770e04c7..3a6f50b4be 100644 --- a/docker/devenv/files/nginx.conf +++ b/docker/devenv/files/nginx.conf @@ -126,6 +126,12 @@ http { proxy_http_version 1.1; } + location /plugins { + autoindex on; + alias /home/penpot/penpot/plugins/dist/apps; + proxy_http_version 1.1; + } + location /mcp/ws { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade';