diff --git a/docker/images/files/nginx.conf b/docker/images/files/nginx.conf index ee9d131e3..52922f3a0 100644 --- a/docker/images/files/nginx.conf +++ b/docker/images/files/nginx.conf @@ -68,6 +68,10 @@ http { add_header Cache-Control "no-cache, max-age=0" always; } + location /api/export { + proxy_pass http://penpot-exporter:6061; + } + location /api { proxy_pass http://penpot-backend:6060/api; } @@ -76,10 +80,6 @@ http { proxy_pass http://penpot-backend:6060/dbg; } - location /export { - proxy_pass http://penpot-exporter:6061; - } - location /ws/notifications { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade';