b9139093f1
- .env.example: install.php→install.html引用, 添加NEXUS_API_BASE_URL - install.py: 移除_write_env中重复的site_url计算 - CLAUDE.md: 全面更新项目记忆, 反映6步完成+D1/D2/D3解决
53 lines
1.7 KiB
Bash
53 lines
1.7 KiB
Bash
# Nexus Environment Configuration
|
|
# Copy this file to .env and modify values for your deployment.
|
|
# Or run the web installer at /app/install.html to auto-generate this file.
|
|
#
|
|
# Generate secret keys: openssl rand -hex 32
|
|
|
|
# ── Brand ──
|
|
NEXUS_SYSTEM_NAME=Nexus
|
|
NEXUS_SYSTEM_TITLE=Nexus — 服务器运维管理平台
|
|
|
|
# ── Server ──
|
|
NEXUS_HOST=0.0.0.0
|
|
NEXUS_PORT=8600
|
|
|
|
# ── Deployment (auto-set by installer) ──
|
|
NEXUS_DEPLOY_PATH=/opt/nexus
|
|
# Comma-separated frontend origins for CORS
|
|
NEXUS_CORS_ORIGINS=http://localhost:8600
|
|
# Base URL for Agent heartbeat reporting
|
|
NEXUS_API_BASE_URL=http://localhost:8600
|
|
|
|
# ── Database (MySQL, REQUIRED) ──
|
|
NEXUS_DATABASE_URL=mysql+aiomysql://root:password@127.0.0.1:3306/nexus
|
|
# Pool params: auto-calculated by installer from MySQL max_connections
|
|
# Formula: pool_size = max(20, maxConn*0.4), overflow = max(20, maxConn*0.3)
|
|
# Default below matches MySQL max_connections=400 (160+120=280 max)
|
|
# install wizard will overwrite these with values tuned to your MySQL instance
|
|
NEXUS_DB_POOL_SIZE=160
|
|
NEXUS_DB_MAX_OVERFLOW=120
|
|
|
|
# ── Security (REQUIRED — generate with: openssl rand -hex 32) ──
|
|
NEXUS_SECRET_KEY=change-me-use-openssl-rand-hex-32
|
|
NEXUS_API_KEY=change-me-use-openssl-rand-hex-32
|
|
NEXUS_ENCRYPTION_KEY=
|
|
|
|
# ── Redis (REQUIRED) ──
|
|
NEXUS_REDIS_URL=redis://127.0.0.1:6379/0
|
|
|
|
# ── SSH ──
|
|
NEXUS_SSH_STRICT_HOST_CHECKING=false
|
|
|
|
# ── Alert Thresholds (%) ──
|
|
NEXUS_CPU_ALERT_THRESHOLD=80
|
|
NEXUS_MEM_ALERT_THRESHOLD=80
|
|
NEXUS_DISK_ALERT_THRESHOLD=80
|
|
|
|
# ── Health Check ──
|
|
NEXUS_HEALTH_CHECK_INTERVAL=60
|
|
|
|
# ── Telegram Alerts (optional — configure in Settings UI) ──
|
|
NEXUS_TELEGRAM_BOT_TOKEN=
|
|
NEXUS_TELEGRAM_CHAT_ID=
|