skip to Main Content

How to configure gce to route paths (rewrite-target in Nginx)

I had a Kibana that was previously running behind the NGINX ingress controller using this Ingress configuration: apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: es-kibana-ing annotations: nginx.ingress.kubernetes.io/backend-protocol: HTTPS nginx.ingress.kubernetes.io/rewrite-target: /$2 spec: rules: - host: "example.com" http: paths: - path: /kibana(/|$)(.*) pathType:…

VIEW QUESTION
Back To Top
Search