use default name

This commit is contained in:
2024-05-29 13:52:42 -05:00
parent e5a4a4a653
commit 7524226eb0

View File

@@ -84,17 +84,17 @@ data:
} }
location /api/export { location /api/export {
proxy_pass http://{{ include "penpot.fullname" . }}-exporter:6061; proxy_pass http://penpot-exporter:6061;
} }
location /api { location /api {
proxy_pass http://{{ include "penpot.fullname" . }}-backend:6060/api; proxy_pass http://penpot-backend:6060/api;
} }
location /ws/notifications { location /ws/notifications {
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade'; proxy_set_header Connection 'upgrade';
proxy_pass http://{{ include "penpot.fullname" . }}-backend:6060/ws/notifications; proxy_pass http://penpot-backend:6060/ws/notifications;
} }
location @handle_redirect { location @handle_redirect {
@@ -118,7 +118,7 @@ data:
} }
location /assets { location /assets {
proxy_pass http://{{ include "penpot.fullname" . }}-backend:6060/assets; proxy_pass http://penpot-backend:6060/assets;
recursive_error_pages on; recursive_error_pages on;
proxy_intercept_errors on; proxy_intercept_errors on;
error_page 301 302 307 = @handle_redirect; error_page 301 302 307 = @handle_redirect;