Error during SSL handshake

Since this is how your Ingress controller (reverse proxy is configured), this is what your Ingress Controller is expecting to see when you connect to it. Try removing the trailing slash from the location line above.

Hello,

We were able to finally fix the issue by doing the following:

Remove the following from application yaml:

camunda:
  bpm:
    webapp:
      application-path: /dev/poc-simple-camunda-app/

add to application.yaml:

server:
  forward-headers-strategy: FRAMEWORK

remove ALL the nginx location snippets from Ingress definition…

Add to ingress definition:

    nginx.ingress.kubernetes.io/rewrite-target: /$2
    nginx.ingress.kubernetes.io/x-forwarded-prefix: /dev/poc-simple-camunda-app/

I hope this saves someone else some time and frustration.