29 lines
812 B
PHP
29 lines
812 B
PHP
<?php
|
|
// Database
|
|
define('DB_HOST', 'localhost');
|
|
define('DB_NAME', 'gestoria_lp');
|
|
define('DB_USER', 'root');
|
|
define('DB_PASS', '');
|
|
|
|
// SMTP (Hostinger)
|
|
define('SMTP_HOST', 'smtp.hostinger.com');
|
|
define('SMTP_PORT', 465);
|
|
define('SMTP_USER', 'contacto@gestorialp.com');
|
|
define('SMTP_PASS', '');
|
|
define('SMTP_FROM_NAME', 'Gestoría LP');
|
|
|
|
// WhatsApp
|
|
define('WHATSAPP_NUMBER', '521XXXXXXXXXX');
|
|
|
|
// Encryption key for client credentials (32 bytes for AES-256)
|
|
define('ENCRYPTION_KEY', 'CHANGE_THIS_TO_A_RANDOM_32_CHAR_KEY!');
|
|
|
|
// Upload settings
|
|
define('UPLOAD_DIR', __DIR__ . '/../uploads/');
|
|
define('MAX_FILE_SIZE', 5 * 1024 * 1024); // 5MB
|
|
define('ALLOWED_EXTENSIONS', ['pdf', 'jpg', 'jpeg', 'png', 'doc', 'docx']);
|
|
|
|
// Site
|
|
define('SITE_URL', 'https://gestorialp.com');
|
|
define('SITE_NAME', 'Gestoría LP');
|