From 57104ac74a39dd6f3c910aa4c523f63611dce871 Mon Sep 17 00:00:00 2001 From: Jacob Cody Wimer Date: Tue, 19 Jan 2016 10:46:16 -0500 Subject: [PATCH] Forgot to inject cookie --- roles/proxy/templates/haproxy.cfg.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/proxy/templates/haproxy.cfg.j2 b/roles/proxy/templates/haproxy.cfg.j2 index 71be556..1895aad 100644 --- a/roles/proxy/templates/haproxy.cfg.j2 +++ b/roles/proxy/templates/haproxy.cfg.j2 @@ -49,6 +49,7 @@ backend www-backend backend wrestlingdev redirect scheme https if !{ ssl_fc } balance roundrobin + cookie SERVERID insert indirect nocache {% for web_server in webservers %} server {{ web_server }} {{ web_server }}:443 check cookie {{ web_server }} ssl verify none {% endfor %}