From 4a0fbc35268c9d6696e701c7da31dbeaeb21a722 Mon Sep 17 00:00:00 2001 From: Harish Venkata Kajur Date: Thu, 11 Jul 2019 08:28:57 -0400 Subject: [PATCH] Update the haproxy config to support dsl Issue-ID: AAI-2509 Change-Id: I626fc5f6e5e320d3d717eaa087a0405a14abeaae Signed-off-by: Harish Venkata Kajur --- resources/config/haproxy/haproxy.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/config/haproxy/haproxy.cfg b/resources/config/haproxy/haproxy.cfg index 3ffaa0f..f84d0f7 100644 --- a/resources/config/haproxy/haproxy.cfg +++ b/resources/config/haproxy/haproxy.cfg @@ -97,9 +97,10 @@ frontend IST_8443 acl is_Port_8446_generic path_reg -i ^/aai/v[0-9]+/search/generic-query$ acl is_Port_8446_nodes path_reg -i ^/aai/v[0-9]+/search/nodes-query$ acl is_Port_8446_version path_reg -i ^/aai/v[0-9]+/query$ + acl is_dsl path_reg -i ^/aai/v[0-9]+/dsl$ acl is_named-query path_beg -i /aai/search/named-query acl is_search-model path_beg -i /aai/search/model - use_backend IST_AAI_8446 if is_Port_8446_generic or is_Port_8446_nodes or is_Port_8446_version or is_named-query or is_search-model + use_backend IST_AAI_8446 if is_Port_8446_generic or is_Port_8446_nodes or is_Port_8446_version or is_named-query or is_search-model or is_dsl default_backend IST_Default_8447 -- 2.16.6