In `.env.example` file an example for providing the dynamic configuration for provided certificates from the `certs` directory says: ``` # tls: # certificates: # - certFile: /certs/opencloud.test.crt # keyFile: /certs/opencloud.test.key # stores: # - default # stores: # default: # defaultCertificate: # certFile: /certs/opencloud.test.crt # keyFile: /certs/opencloud.test.key ``` However, in the `README.md` in section `Deployment Options / SSL Certificate Support / Use Certificates from the certs/ directory` the example used is: ```yml tls: certificates: - certFile: /certs/opencloud.test.crt keyFile: /certs/opencloud.test.key stores: - default - certFile: /certs/wildcard.example.com.crt keyFile: /certs/wildcard.example.com.key stores: - default ```