29 lines
567 B
Text
29 lines
567 B
Text
|
|
# Heady Remote Access Configuration
|
||
|
|
|
||
|
|
# Guacd connection
|
||
|
|
GUACD_HOST=heady-guacd
|
||
|
|
GUACD_PORT=4822
|
||
|
|
GUACD_LOG_LEVEL=info
|
||
|
|
|
||
|
|
# Heady main application
|
||
|
|
HEADPLANE_API_URL=http://headplane:3000
|
||
|
|
|
||
|
|
# JWT authentication (should match Heady main app)
|
||
|
|
JWT_SECRET=your-secret-key-here
|
||
|
|
JWT_ALGORITHM=HS256
|
||
|
|
|
||
|
|
# Domain configuration
|
||
|
|
HEADY_DOMAIN=localhost
|
||
|
|
|
||
|
|
# Development settings
|
||
|
|
FASTAPI_ENV=development
|
||
|
|
UVICORN_RELOAD=true
|
||
|
|
|
||
|
|
# Recording settings
|
||
|
|
RECORDINGS_PATH=/recordings
|
||
|
|
DRIVE_PATH=/drive
|
||
|
|
|
||
|
|
# Session management
|
||
|
|
SESSION_TIMEOUT_MINUTES=30
|
||
|
|
MAX_SESSIONS_PER_USER=5
|
||
|
|
CLEANUP_INTERVAL_HOURS=24
|