How to change the path to SSL certificates in .env file?

Checklist
[x ] I have read intro post: https://community.passbolt.com/t/about-the-installation-issues-category/12
[ x] I have read the tutorials, help and searched for similar issues
[ x] I provide relevant information about my server (component names and versions, etc.)
[ x] I provide a copy of my logs and healthcheck
[ x] I describe the steps I have taken to trouble shoot the problem
[ x] I describe the steps on how to reproduce the issue

Curious if there is an environment variable for setting the path for the SSL certificates within the container on run? I found /passbolt/env.sh looks for a secrets file and can set ‘PASSBOLT_SSL_SERVER_CERT_FILE’ and ‘PASSBOLT_SSL_SERVER_KEY_FILE’ - can we set this path by adding an env variable? I need to pull the certs from /etc/letsencrypt/live/some.example.tld/fullchain.pem rather than /etc/passbolt/certs to avoid copying files during renewals.

I checked the variable reference, but did not see anything that may set the certificate path. Curious if someone has found a way, other than bind mounting the file on the host.

I came up with a fix for my needs, I just ended up bind mounting a custom passbolt-ssl.conf file that nginx uses for the SSL connections with the custom path to the certs like:

 -v ~/.podman/passbolt/passbolt-ssl.conf:/etc/nginx/snippets/passbolt-ssl.conf:z

Now to reads the letsencrypt certs at the normal path within the container.