-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 1.06 KB
/
.env.example
File metadata and controls
38 lines (32 loc) · 1.06 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
# Application Environment
# IMPORTANT: APP_DEBUG=false enables Twig cache optimizations (5-15ms faster per request)
APP_ENV=production
APP_DEBUG=false
APP_TIMEZONE=UTC
APP_URL=https://yourdomain.com/path
# Database Configuration
DB_CONNECTION=sqlite
DB_DATABASE=database/database.sqlite
# Session Security
SESSION_SECRET=your-session-secret-key-here
# Logging Configuration
LOG_CHANNEL=file
LOG_ENABLED=true
LOG_LEVEL=warning
LOG_MAX_FILES=30
LOG_PATH=storage/logs
# Upload Performance
# FAST_UPLOAD generates only preview on upload, variants created async
FAST_UPLOAD=false
SYNC_VARIANTS_ON_UPLOAD=true
# Debug Flags (disable in production for best performance)
# WARNING: Setting any DEBUG flag to true may impact Twig cache performance
DEBUG_PERFORMANCE=false
DEBUG_REQUESTS=false
DEBUG_SQL=false
DEBUG_TOOLBAR=false
# Reverse Proxy Configuration
# Comma-separated list of trusted proxy IPs for X-Forwarded-For header
# Use '*' to trust all proxies (not recommended for production)
# Example: TRUSTED_PROXIES=127.0.0.1,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
TRUSTED_PROXIES=