summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarish Venkata Kajur <vk250x@att.com>2019-07-11 08:28:57 -0400
committerHarish Venkata Kajur <vk250x@att.com>2019-07-11 08:29:00 -0400
commit4a0fbc35268c9d6696e701c7da31dbeaeb21a722 (patch)
treef96d15b08b2da7381be86e4ed676cde063bd3b06
parent6509a172751b3c85995100e3d3a205abe73b116c (diff)
Update the haproxy config to support dsl
Issue-ID: AAI-2509 Change-Id: I626fc5f6e5e320d3d717eaa087a0405a14abeaae Signed-off-by: Harish Venkata Kajur <vk250x@att.com>
-rw-r--r--resources/config/haproxy/haproxy.cfg3
1 files changed, 2 insertions, 1 deletions
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