` nginx.ingress.kubernetes.io/server-snippet: |
location ~/(blog)(/|$)(.*) {
proxy_set_header X-Forwarded-Proto "https";
if ($request_uri ~ "^/blog(/|$)(.*)"){
proxy_pass http://{{ .Values.deploy.name }}-service.{{ .Values.deploy.namespace }};
break;
}
}`
I want to pass from nginx ingress to ALB ingress. But when checked the ALB annotations (conditions , actions) I can't figure it out.
How can I fix this issue ?