Client Certificate Settings during Mendix Docker Deployment

0
I have a Mendix app built into a Docker image using the `docker-mendix-buildpack`. I want to deploy it in a Docker container but also need to add a client certificate to my environment. I've tried setting up client certificates using environment variables: - name: MXRUNTIME_ClientCertificates   value: /path/cert.pfx - name: MXRUNTIME_ClientCertificatePasswords   value: mypwd But it seems that I get a CrashLoopBackOff  error. The GitHub documentation on client certificates is quite confusing. Should I use the environment variable names inside Runtime Customization with the prefix MXRUNTIME, or should I use CLIENT_CERTIFICATES / CERTIFICATE_AUTHORITIES as mentioned in the GitHub docs?
asked
1 answers
0

yes you need to set environment variable with name CLIENT_CERTIFICATES Check the details at

 

https://github.com/mendix/cf-mendix-buildpack

 

your attempt to set via custom runtime settings should be avoid; better not use unless you really know what you are doing.

 

answered