In nginx, I've got some configuration like this:
location /admingateway/ {
proxy_pass http://localhost:8001/admingateway/;
proxy_set_header Host $host:$proxy_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Via "nginx";
}
My question is how can I configure the same behavior in my ingress yaml for the 4 header settings?