Ce contenu n’est pas encore disponible dans votre langue.
Microsoft SQL Server
ALTCHA Sentinel supports Microsoft SQL Server 2022 and later.
Automatic database migrations, snapshots, and point-in-time recovery (PITR) are fully supported.
Enabling Microsoft SQL Server
To enable Microsoft SQL Server, configure the MSSQL_URL environment variable:
MSSQL_URL=mssql://username:password@localhost:1433/altcha_sentinelDatabase migrations are applied automatically when the application starts.
Microsoft SQL Server with TLS/SSL
To connect to Microsoft SQL Server over TLS/SSL, add ?encrypt=true to the connection string:
mssql://username:password@localhost:1433/altcha_sentinel?encrypt=trueFor basic TLS/SSL encryption without providing a custom certificate authority (CA) certificate, set:
MSSQL_TLS_REJECT_UNAUTHORIZED=0This enables TLS/SSL while disabling certificate verification.
AWS RDS
When connecting to AWS RDS, no additional TLS configuration is required. The AWS CA bundle is included by default.
Custom TLS/SSL Certificates
To use a custom CA certificate or client certificates, configure the following environment variables:
MSSQL_TLS_CAMSSQL_TLS_CERTMSSQL_TLS_KEY
For more information, see the environment variables documentation.