23 lines
534 B
Plaintext
23 lines
534 B
Plaintext
# === CONTRASEÑAS REQUERIDAS ===
|
|
# Generar DB_PASSWORD con: openssl rand -base64 32
|
|
DB_PASSWORD=''
|
|
|
|
# Generar REDIS_PASSWORD con: openssl rand -base64 32
|
|
REDIS_PASSWORD=''
|
|
|
|
# Usuario administrador de NetBox
|
|
SUPERUSER_EMAIL=admin@example.com
|
|
SUPERUSER_PASSWORD=''
|
|
|
|
# === CONFIGURACIÓN OPCIONAL ===
|
|
# Base de datos (valores por defecto)
|
|
DB_NAME=netbox
|
|
DB_USER=netbox
|
|
|
|
# Host permitido (dominio de NetBox)
|
|
ALLOWED_HOST=*
|
|
|
|
# === SOLO PARA TRAEFIK ===
|
|
# Dominio para certificado SSL (no necesario con NPM)
|
|
DOMAIN_HOST=netbox.example.com
|