diff --git a/templates/nginx/configmap-http.yaml b/templates/nginx/configmap-http.yaml
index 3aa426356ca25340b152b4aa167e0a4a4abd7f08..c4b8354d0642d3a24256ca251e76d03ad6fbb90b 100644
--- a/templates/nginx/configmap-http.yaml
+++ b/templates/nginx/configmap-http.yaml
@@ -127,6 +127,8 @@ data:
           proxy_set_header X-Forwarded-Proto $x_forwarded_proto;
           proxy_buffering off;
           proxy_request_buffering off;
+          proxy_send_timeout 900;
+          proxy_read_timeout 900;
         }
 
         location /service/ {
diff --git a/templates/nginx/configmap-https.yaml b/templates/nginx/configmap-https.yaml
index 045c576a8b2b37915baf5a92074359e934bfa16d..74c667e009a23d8dc19032cd6945284ee909500f 100644
--- a/templates/nginx/configmap-https.yaml
+++ b/templates/nginx/configmap-https.yaml
@@ -88,6 +88,9 @@ data:
 
           proxy_buffering off;
           proxy_request_buffering off;
+
+          proxy_send_timeout 900;
+          proxy_read_timeout 900;
         }
       }
       {{- end }}