Bash · 537 bytes Raw Blame History
1 # Server Configuration
2 PORT=3000
3 HOST=0.0.0.0
4 NODE_ENV=development
5
6 # ZephyrFS Node Integration
7 ZEPHYRFS_NODE_URL=http://localhost:8080
8 ZEPHYRFS_NODE_TIMEOUT=30000
9
10 # Authentication
11 JWT_SECRET=your-jwt-secret-change-in-production-min-32-chars-long
12 JWT_EXPIRES_IN=24h
13 JWT_REFRESH_EXPIRES_IN=7d
14
15 # CORS
16 CORS_ORIGINS=http://localhost:5173,http://localhost:3000
17
18 # File Upload Limits
19 MAX_FILE_SIZE=1073741824 # 1GB in bytes
20 MAX_CHUNK_SIZE=1048576 # 1MB in bytes
21
22 # WebDAV
23 WEBDAV_ENABLED=true
24 WEBDAV_PATH=/webdav
25
26 # Logging
27 LOG_LEVEL=info