From 7aeb6825ff90da14f32251969b254e2115a3438d Mon Sep 17 00:00:00 2001 From: Jeffrey Zhang Date: Thu, 29 Mar 2018 14:56:10 +0800 Subject: [PATCH] Use a large number for haproxy timeout tunnel timeout tunnel is use for WebSocket and CONNECT protocol. Need use a larger number for it. Otherwise, novnc will be auto disconnected if no action happend in a short time on browser. Change-Id: If37623e8fda5260ab0b38d2203f5266777dba063 Closes-Bug: #1759774 --- ansible/roles/haproxy/templates/haproxy.cfg.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/haproxy/templates/haproxy.cfg.j2 b/ansible/roles/haproxy/templates/haproxy.cfg.j2 index 49d11bf7f1..fd65f93db5 100644 --- a/ansible/roles/haproxy/templates/haproxy.cfg.j2 +++ b/ansible/roles/haproxy/templates/haproxy.cfg.j2 @@ -150,6 +150,7 @@ listen nova_novncproxy bind {{ kolla_internal_vip_address }}:{{ nova_novncproxy_port }} http-request del-header X-Forwarded-Proto if { ssl_fc } http-request set-header X-Forwarded-Proto https if { ssl_fc } + timeout tunnel 1h {% for host in groups['nova-novncproxy'] %} server {{ hostvars[host]['ansible_hostname'] }} {{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ nova_novncproxy_port }} check inter 2000 rise 2 fall 5 {% endfor %}