From 0d4de50f13da6f9c5024e3f6eb2c9f382f65f657 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 22 Mar 2022 11:47:18 +0100 Subject: [PATCH] :paperclip: Minor fix on docker image files --- docker/images/files/nginx.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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';