setting up ALB and Proxy container
We have a requirement to use ALB/Reverse proxy like traefik. Is there any similar solution produce by webgateway or webgateway-ingenix container image?
Reference:
webgateway-nginx:2024.1
Product version: IRIS 2024.1
Discussion (0)0
Comments
Hi Jignesh,
What is your context? Are you working with Kubernets?
I think the answer is it depends. While nginx can do reverse proxy it might not be on a par with Traefik and all its management layer within a K8s context.
nginx example FYI & FWIW
server {
listen 8080;
location / { deny all; }
location /csp/sys/ { proxy_pass http://iris:52773; }
location /api/monitor/ { proxy_pass http://iris:52773; }
proxy_hide_header WWW-Authenticate;
}