- Updated .env.example to consolidate SQL Server credentials under PANEL_MSSQL_* variables. - Removed deprecated docker-compose.postgres.yml file. - Adjusted docker-compose.yml to utilize new SQL Server credential structure. - Enhanced README.md with Docker build and push instructions. - Refined database schema in schema.sql to align with new user and permission structures. - Updated init-database.js to reflect changes in user and session table names. - Modified user management functions in users.ts to accommodate new database schema. - Streamlined API routes to utilize PostgreSQL for user and database management. - Improved error handling and logging in various server routes.
20 lines
727 B
Plaintext
20 lines
727 B
Plaintext
# Credenciales SQL Server (mismo usuario en todos los nodos salvo sql_password en database_nodes).
|
|
# Si no defines PANEL_MSSQL_*, se usan DB_PRIMARY_* / DB_SECONDARY_* como respaldo.
|
|
PANEL_MSSQL_USER=sa
|
|
PANEL_MSSQL_PASSWORD=Clave.2025
|
|
# En contenedor Docker: reescribe localhost en server_name → host.docker.internal
|
|
# PANEL_MSSQL_DOCKER=true
|
|
|
|
# PostgreSQL - Usuarios del panel + catálogo ControlDesk (tablas a24c.* las crea otra app)
|
|
DB_POSTGRES_HOST=localhost
|
|
DB_POSTGRES_PORT=5432
|
|
DB_POSTGRES_USER=postgres
|
|
DB_POSTGRES_PASS=Control.
|
|
DB_POSTGRES_DB=CONTROLDESK
|
|
|
|
# JWT Secret (cambiar en producción)
|
|
JWT_SECRET=change-this-secret-in-production-please-use-a-long-random-string
|
|
|
|
# Ruta de backups
|
|
BACKUP_PATH=D:/BackupSFTP/
|