-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (43 loc) · 1.16 KB
/
.env.example
File metadata and controls
56 lines (43 loc) · 1.16 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# CTIAS Lab Environment Configuration
# Copy this file to .env and update with your actual values
# Database Configuration
DATABASE_URL=postgresql://ctias:ctias_secure_password_change_me@postgres:5432/ctias_lab
POSTGRES_DB=ctias_lab
POSTGRES_USER=ctias
POSTGRES_PASSWORD=ctias_secure_password_change_me
# Redis Configuration
REDIS_URL=redis://redis:6379/0
REDIS_HOST=redis
REDIS_PORT=6379
# JWT & Security
JWT_SECRET=your_jwt_secret_key_change_me_minimum_32_characters
JWT_ALGORITHM=HS256
JWT_EXPIRATION_MINUTES=60
# API Configuration
API_HOST=0.0.0.0
API_PORT=8000
API_WORKERS=4
API_LOG_LEVEL=info
# Frontend Configuration
REACT_APP_API_URL=http://localhost:8000
# Rate Limiting
RATE_LIMIT_ENABLED=true
RATE_LIMIT_PER_MINUTE=60
# CORS Configuration
CORS_ORIGINS=http://localhost:3000,http://localhost:8000
# Environment
ENVIRONMENT=development
# Logging
LOG_LEVEL=info
LOG_FORMAT=json
# Module Timeouts (seconds)
MODULE_TIMEOUT=30
# External API Keys (for threat intelligence feeds)
VIRUSTOTAL_API_KEY=
ABUSEIPDB_API_KEY=
SHODAN_API_KEY=
# Sentry Configuration (optional)
SENTRY_DSN=
# Admin Configuration
ADMIN_EMAIL=admin@example.com
ADMIN_PASSWORD=changeme_secure_password