-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (30 loc) · 977 Bytes
/
Copy path.env.example
File metadata and controls
37 lines (30 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Configuración de la Base de Datos
DB_HOST=localhost
DB_NAME=auth_base
DB_USER=tu_usuario
DB_PASS=tu_contraseña
DB_CHARSET=utf8mb4
# Configuración de la Aplicación
APP_URL=http://localhost/php-mvc-admin-starter/public
TIMEZONE=tu_zona_horaria
DEBUG=true
APP_VERSION=3.17.0
# Session (seconds of inactivity before auto-logout)
SESSION_LIFETIME=1800
# Dashboard cache TTL (seconds before metrics are refreshed — 0 to disable)
DASHBOARD_CACHE_TTL=300
# Remember Me (seconds the persistent cookie lasts — 30 days = 2592000)
REMEMBER_ME_LIFETIME=2592000
REMEMBER_ME_COOKIE_NAME=remember_me
# Login throttling (brute-force protection)
LOGIN_MAX_ATTEMPTS=5
LOGIN_LOCKOUT_MINUTES=15
# Audit log retention (days before purging old entries — default 90)
AUDIT_LOG_RETENTION_DAYS=90
# Configuración de Correo (SMTP)
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USER=tu_usuario_smtp
MAIL_PASS=tu_contraseña_smtp
MAIL_FROM=noreply@example.com
MAIL_FROM_NAME="Base System"