Error SQL Server: SSL Provider: The certificate chain was issued by an authority that is not trusted.

The meaning of this error has to do with verifying the SSL certificate that's connected to the database server.

To workaround this error, we added an environment property not to verify the certificate. Add the following line to add the `.env` file:

SQLSRV_TRUST_SERVER=yes

In case there is a self-signed certificate, please add the following property as well:

SQLSRV_ENCRYPT=no