mirror of
https://lavaforge.org/spotizerr/spotizerr.git
synced 2025-12-24 02:39:14 -05:00
30 lines
720 B
Plaintext
30 lines
720 B
Plaintext
# Docker Compose environment variables# Delete all comments of this when deploying (everything that is )
|
|
|
|
# Redis connection (external or internal)
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
REDIS_DB=0
|
|
REDIS_PASSWORD=CHANGE_ME
|
|
|
|
# Set to true to filter out explicit content
|
|
EXPLICIT_FILTER=false
|
|
|
|
# User ID for the container
|
|
PUID=1000
|
|
|
|
# Group ID for the container
|
|
PGID=1000
|
|
|
|
# Optional: Sets the default file permissions for newly created files within the container.
|
|
UMASK=0022
|
|
|
|
# Auth
|
|
ENABLE_AUTH=true
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=your-super-secret-jwt-key-change-in-production
|
|
JWT_EXPIRATION_HOURS=24
|
|
|
|
# Default Admin User (created automatically if no users exist)
|
|
DEFAULT_ADMIN_USERNAME=admin
|
|
DEFAULT_ADMIN_PASSWORD=admin123 |