diff --git a/helm-charts/audioqna/templates/nginx-deployment.yaml b/helm-charts/audioqna/templates/nginx-deployment.yaml index ec25d6778..53b1fb4e1 100644 --- a/helm-charts/audioqna/templates/nginx-deployment.yaml +++ b/helm-charts/audioqna/templates/nginx-deployment.yaml @@ -15,6 +15,12 @@ data: alias /usr/share/nginx/html/index.html; } + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; + client_max_body_size 10G; + location / { proxy_pass http://{{ include "ui.fullname" (index .Subcharts "audioqna-ui") }}:{{ index .Values "audioqna-ui" "service" "port" }}; proxy_set_header Host $host; @@ -29,6 +35,11 @@ data: proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; + + proxy_buffering off; + proxy_cache off; + proxy_request_buffering off; + gzip off; } } diff --git a/helm-charts/chatqna/templates/nginx-deployment.yaml b/helm-charts/chatqna/templates/nginx-deployment.yaml index c395bea4f..e7473d382 100644 --- a/helm-charts/chatqna/templates/nginx-deployment.yaml +++ b/helm-charts/chatqna/templates/nginx-deployment.yaml @@ -13,6 +13,12 @@ data: alias /usr/share/nginx/html/index.html; } + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; + client_max_body_size 10G; + location / { proxy_pass http://{{ include "ui.fullname" (index .Subcharts "chatqna-ui") }}:{{ index .Values "chatqna-ui" "service" "port" }}; proxy_set_header Host $host; @@ -27,6 +33,11 @@ data: proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; + + proxy_buffering off; + proxy_cache off; + proxy_request_buffering off; + gzip off; } location /v1/dataprep { diff --git a/helm-charts/codegen/templates/nginx-deployment.yaml b/helm-charts/codegen/templates/nginx-deployment.yaml index 03f956218..2935b63af 100644 --- a/helm-charts/codegen/templates/nginx-deployment.yaml +++ b/helm-charts/codegen/templates/nginx-deployment.yaml @@ -13,6 +13,12 @@ data: alias /usr/share/nginx/html/index.html; } + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; + client_max_body_size 10G; + location / { proxy_pass http://{{ include "ui.fullname" (index .Subcharts "codegen-ui") }}:{{ index .Values "codegen-ui" "service" "port" }}; proxy_set_header Host $host; @@ -27,6 +33,11 @@ data: proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; + + proxy_buffering off; + proxy_cache off; + proxy_request_buffering off; + gzip off; } } diff --git a/helm-charts/codetrans/templates/nginx-deployment.yaml b/helm-charts/codetrans/templates/nginx-deployment.yaml index 6b39f0710..68e9f244a 100644 --- a/helm-charts/codetrans/templates/nginx-deployment.yaml +++ b/helm-charts/codetrans/templates/nginx-deployment.yaml @@ -13,6 +13,12 @@ data: alias /usr/share/nginx/html/index.html; } + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; + client_max_body_size 10G; + location / { proxy_pass http://{{ include "ui.fullname" (index .Subcharts "codetrans-ui") }}:{{ index .Values "codetrans-ui" "service" "port" }}; proxy_set_header Host $host; @@ -27,6 +33,11 @@ data: proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; + + proxy_buffering off; + proxy_cache off; + proxy_request_buffering off; + gzip off; } } diff --git a/helm-charts/docsum/templates/nginx-deployment.yaml b/helm-charts/docsum/templates/nginx-deployment.yaml index 890edac2f..9580f4178 100644 --- a/helm-charts/docsum/templates/nginx-deployment.yaml +++ b/helm-charts/docsum/templates/nginx-deployment.yaml @@ -13,6 +13,12 @@ data: alias /usr/share/nginx/html/index.html; } + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; + client_max_body_size 10G; + location / { proxy_pass http://{{ include "ui.fullname" (index .Subcharts "docsum-ui") }}:{{ index .Values "docsum-ui" "service" "port" }}; proxy_set_header Host $host; @@ -27,6 +33,11 @@ data: proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; + + proxy_buffering off; + proxy_cache off; + proxy_request_buffering off; + gzip off; } } diff --git a/helm-charts/faqgen/templates/nginx-deployment.yaml b/helm-charts/faqgen/templates/nginx-deployment.yaml index 969b63c2a..76696f1c0 100644 --- a/helm-charts/faqgen/templates/nginx-deployment.yaml +++ b/helm-charts/faqgen/templates/nginx-deployment.yaml @@ -13,6 +13,12 @@ data: alias /usr/share/nginx/html/index.html; } + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; + client_max_body_size 10G; + location / { proxy_pass http://{{ include "ui.fullname" (index .Subcharts "faqgen-ui") }}:{{ index .Values "faqgen-ui" "service" "port" }}; proxy_set_header Host $host; @@ -27,6 +33,11 @@ data: proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; + + proxy_buffering off; + proxy_cache off; + proxy_request_buffering off; + gzip off; } } diff --git a/helm-charts/visualqna/templates/nginx-deployment.yaml b/helm-charts/visualqna/templates/nginx-deployment.yaml index 250291472..419b69d8c 100644 --- a/helm-charts/visualqna/templates/nginx-deployment.yaml +++ b/helm-charts/visualqna/templates/nginx-deployment.yaml @@ -13,6 +13,12 @@ data: alias /usr/share/nginx/html/index.html; } + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; + client_max_body_size 10G; + location / { proxy_pass http://{{ include "ui.fullname" (index .Subcharts "visualqna-ui") }}:{{ index .Values "visualqna-ui" "service" "port" }}; proxy_set_header Host $host; @@ -27,6 +33,11 @@ data: proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; + + proxy_buffering off; + proxy_cache off; + proxy_request_buffering off; + gzip off; } }