Files
guarddog-nexus/.env.example

38 lines
661 B
Plaintext

# Nexus connection
NEXUS_URL=http://nexus:8081
# Database
DATABASE_PATH=/data/guarddog.db
# Server
HOST=0.0.0.0
PORT=8080
# Logging
LOG_LEVEL=INFO
LOG_SYSLOG_HOST=
LOG_SYSLOG_PORT=514
LOG_SYSLOG_FACILITY=local0
# Webhook
WEBHOOK_SECRET=
# Scanner
SCAN_TIMEOUT_SECONDS=300
TEMP_DIR=/tmp/guarddog-nexus
GUARDDOG_BINARY=guarddog
MAX_CONCURRENT_SCANS=4
# Timeouts (seconds)
NEXUS_DOWNLOAD_TIMEOUT_SECONDS=120
NEXUS_API_TIMEOUT_SECONDS=30
# LLM analysis (optional — set LLM_ENABLED=1 to activate)
LLM_ENABLED=0
LLM_AUTO_ANALYZE=0
LLM_API_BASE=https://api.openai.com/v1
LLM_API_KEY=
LLM_MODEL=gpt-4o-mini
LLM_TIMEOUT_SECONDS=30
LLM_MAX_CONCURRENT_ANALYSES=2