# MSSQL Connection Settings
MSSQL_HOST=localhost
MSSQL_PORT=1433
MSSQL_DATABASE=master
MSSQL_USER=sa
MSSQL_PASSWORD=YourStrong@Passw0rd
# Connection Security
MSSQL_ENCRYPT=true
MSSQL_TRUST_SERVER_CERTIFICATE=false
# Timeouts (in seconds)
MSSQL_CONNECTION_TIMEOUT=30
MSSQL_REQUEST_TIMEOUT=30
# Connection Pool Settings (not yet implemented)
MIN_POOL_SIZE=2
MAX_POOL_SIZE=10
IDLE_TIMEOUT=300
CONNECTION_LIFETIME=1800
# Security Settings
# WARNING: Only enable write operations if you understand the risks
MSSQL_ALLOW_WRITE_OPERATIONS=false
# Logging
# Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=INFO