aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhuangjian <huang.jian12@zte.com.cn>2016-11-04 01:12:02 +0800
committerhuangjian <huang.jian12@zte.com.cn>2016-11-04 01:12:02 +0800
commite1481e9062b2b9de75395f6b2e7873c37cbdd0f3 (patch)
tree95e79bb7548d6cb560bc7e24006788cea5ca18fd
parent09a4834a53c49fa762164793ecccbc01e8779f18 (diff)
Set send/read timeout 300srelease/sun
Change-Id: If90ac412acbd8b462bb8c33a4d6a428d133ea332 Issue-id: OCS-138 Signed-off-by: huangjian <huang.jian12@zte.com.cn>
-rw-r--r--msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf
index fcbf8ee..25cacf9 100644
--- a/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf
+++ b/msb-core/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf
@@ -41,8 +41,8 @@ http {
#set the time wait for connect to proxy_pass target,avoid waiting too long
proxy_connect_timeout 10s;
- proxy_read_timeout 300s;
- proxy_send_timeout 300s;
+ proxy_read_timeout 3600s;
+ proxy_send_timeout 3600s;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;