Commit c22d3e90 authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

erp5: Haproxy leave ERP5 set the cookie

parent 123e8474
...@@ -355,7 +355,7 @@ md5sum = 399ea8b0b8bdcc63d7295351445a863a ...@@ -355,7 +355,7 @@ md5sum = 399ea8b0b8bdcc63d7295351445a863a
[template-haproxy-cfg] [template-haproxy-cfg]
< = download-base < = download-base
filename = haproxy.cfg.in filename = haproxy.cfg.in
md5sum = 392e5aabb0b873890d4d070e5a25f51e md5sum = 7ee391d6a79ff14f23d6c4631469997c
[bt5-repository] [bt5-repository]
# Format: # Format:
......
...@@ -11,7 +11,6 @@ defaults ...@@ -11,7 +11,6 @@ defaults
retries 1 retries 1
option redispatch option redispatch
maxconn 2000 maxconn 2000
cookie SERVERID insert nocache postonly
balance roundrobin balance roundrobin
stats uri /haproxy stats uri /haproxy
stats realm Global\ statistics stats realm Global\ statistics
...@@ -37,6 +36,9 @@ defaults ...@@ -37,6 +36,9 @@ defaults
{% for name, (port, backend_list) in parameter_dict['backend-dict'].items() -%} {% for name, (port, backend_list) in parameter_dict['backend-dict'].items() -%}
listen {{ name }} {{ parameter_dict['ip'] }}:{{ port }} listen {{ name }} {{ parameter_dict['ip'] }}:{{ port }}
cookie SERVERID rewrite
http-request set-header X-Balancer-Current-Cookie SERVERID
http-send-name-header X-Balancer-Current-Server
{% set has_webdav = [] -%} {% set has_webdav = [] -%}
{% for address, connection_count, webdav in backend_list -%} {% for address, connection_count, webdav in backend_list -%}
{% if webdav %}{% do has_webdav.append(None) %}{% endif -%} {% if webdav %}{% do has_webdav.append(None) %}{% endif -%}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment