From f851a5eda60629690cc078d4d659e2c296d4d69f Mon Sep 17 00:00:00 2001 From: rameshiyer27 Date: Tue, 2 Jul 2024 09:16:56 +0000 Subject: Add docker compose for clamp replica New docker-compose for installing clamp in replica CSIT can be triggerred against replica with "clamp-replica" keyword Issue-ID: POLICY-4913 Signed-off-by: zrrmmua Change-Id: I2b0344c02152387d66fe0c3069a997120bdf0f9d --- compose/config/nginx/nginx-acm.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 compose/config/nginx/nginx-acm.conf (limited to 'compose/config') diff --git a/compose/config/nginx/nginx-acm.conf b/compose/config/nginx/nginx-acm.conf new file mode 100644 index 00000000..59d12109 --- /dev/null +++ b/compose/config/nginx/nginx-acm.conf @@ -0,0 +1,17 @@ +user nginx; + +events { + worker_connections 1000; +} + +http { + upstream runtime { + server policy-clamp-runtime-acm-replica:6969; + } + server { + listen 30007; + location / { + proxy_pass http://runtime; + } + } +} -- cgit 1.2.3-korg