-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
54 lines (39 loc) · 1.82 KB
/
.env.example
File metadata and controls
54 lines (39 loc) · 1.82 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
# GitLab Device Code Phishing Framework - Environment Variables Example
#
# Copy this file to .env and customize the values for your deployment.
# The docker-compose.yml file will automatically load variables from .env
# ============================================================================
# Server Configuration
# ============================================================================
# Admin Panel Port (default: 3000)
ADMIN_PORT=3000
# Phishing Server Port (default: 8080)
PHISHING_PORT=8080
# Host binding (default: 0.0.0.0 for all interfaces)
HOST=0.0.0.0
# ============================================================================
# Logging Configuration
# ============================================================================
# Log level: DEBUG, INFO, WARNING, ERROR, CRITICAL (default: INFO)
LOG_LEVEL=INFO
# ============================================================================
# Database Configuration
# ============================================================================
# Database file path (default: data/gitlab_phishing.db)
DB_PATH=data/gitlab_phishing.db
# ============================================================================
# Timeout and Retry Settings
# ============================================================================
# Polling timeout in seconds (default: 900 = 15 minutes)
POLLING_TIMEOUT=900
# API request timeout in seconds (default: 30)
API_TIMEOUT=30
# Maximum number of retries for failed operations (default: 3)
MAX_RETRIES=3
# Delay between retries in seconds (default: 5)
RETRY_DELAY=5
# ============================================================================
# GitLab Configuration
# ============================================================================
# Default GitLab URL (default: https://gitlab.com)
DEFAULT_GITLAB_URL=https://gitlab.com