-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 980 Bytes
/
.env.example
File metadata and controls
23 lines (18 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ═══════════════════════════════════════════════════════════
# CandyConnect - Environment Configuration
# Copy this file to .env and customize as needed
# ═══════════════════════════════════════════════════════════
# Panel port (the main web UI + API port)
CC_PANEL_PORT=8443
# Panel URL path
CC_PANEL_PATH=/candyconnect
# Default admin credentials (CHANGE THESE!)
CC_ADMIN_USER=admin
CC_ADMIN_PASS=admin123
# JWT secret for token signing (auto-generated if empty)
# Generate one with: python3 -c "import secrets; print(secrets.token_urlsafe(48))"
CC_JWT_SECRET=
# Redis connection URL
# For Docker: redis://redis:6379/0 (uses Docker service name)
# For bare-metal: redis://127.0.0.1:6379/0
CC_REDIS_URL=redis://redis:6379/0