# HG changeset patch # User Yaroslav Zhuravlev # Date 1435755272 -10800 # Node ID e47758a547593df0febc5816c302a4938794065e # Parent 323b0d07116638a5bbd3629f809c6a2cf4755fbe Updated the "WebSockets Proxying" article with proxy_read_timeout. diff -r 323b0d071166 -r e47758a54759 xml/en/docs/http/websocket.xml --- a/xml/en/docs/http/websocket.xml Tue Jun 30 22:42:38 2015 +0300 +++ b/xml/en/docs/http/websocket.xml Wed Jul 01 15:54:32 2015 +0300 @@ -7,7 +7,7 @@
+ rev="2">
@@ -77,6 +77,22 @@ + +By default, the connection will be closed +if no data is transmitted within 60 seconds. +The and + directives +allow overriding this value: + +location /chat/ { + ... + + proxy_read_timeout 10m; + proxy_send_timeout 10m; +} + + +
diff -r 323b0d071166 -r e47758a54759 xml/ru/docs/http/websocket.xml --- a/xml/ru/docs/http/websocket.xml Tue Jun 30 22:42:38 2015 +0300 +++ b/xml/ru/docs/http/websocket.xml Wed Jul 01 15:54:32 2015 +0300 @@ -7,7 +7,7 @@
+ rev="2">
@@ -78,6 +78,22 @@ + +По умолчанию соединение будет закрыто, +если данные не передавались в течение 60 секунд. +Директивы и + +позволяют переопределить это значение: + +location /chat/ { + ... + + proxy_read_timeout 10m; + proxy_send_timeout 10m; +} + + +