From 80da663600e39f224bc30690f15224c4d716dbeb Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 31 Jul 2026 17:53:50 +0500 Subject: [PATCH] ++ --- apps/django/base/nginx-configmap.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/django/base/nginx-configmap.yaml b/apps/django/base/nginx-configmap.yaml index dcd095c..4080296 100644 --- a/apps/django/base/nginx-configmap.yaml +++ b/apps/django/base/nginx-configmap.yaml @@ -64,6 +64,8 @@ data: } location ~^/api/pm/ { #rewrite /api/(.+) /$1 break; + proxy_http_version 1.1; + proxy_set_header Connection ""; proxy_set_header Host $host; proxy_pass http://backend-svc.pm.svc.cluster.local:8000; } @@ -75,6 +77,8 @@ data: # } location ~^/(api|admin)/ { + proxy_http_version 1.1; + proxy_set_header Connection ""; proxy_set_header Host $host; proxy_pass http://backend-svc.django.svc.cluster.local:80; } @@ -102,6 +106,8 @@ data: } location ~^/workflows/(.+).js { + proxy_http_version 1.1; + proxy_set_header Connection ""; rewrite /workflows/(.+) /$1 break; proxy_pass http://frontend-svc.processing.svc.cluster.local:80; }