-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.docker.example
More file actions
26 lines (22 loc) · 1.11 KB
/
Copy path.env.docker.example
File metadata and controls
26 lines (22 loc) · 1.11 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
# Docker Compose Environment Variables (EXAMPLE)
# Kopiere diese Datei zu .env.docker und fülle deine echten Credentials ein
# WICHTIG: Diese Credentials werden sowohl zur Build-Zeit in das JavaScript eingebaut,
# als auch zur Laufzeit für den CORS-Proxy verwendet.
# Streaming Server Credentials - HIER DEINE ECHTEN CREDENTIALS EINTRAGEN
STREAM_USERNAME=your_stream_username
STREAM_PASSWORD=your_stream_password
# Streaming Server Connection
STREAM_SERVER=your.streaming.server
STREAM_PORT=8015
STREAM_MOUNT=/
# OpenSubsonic Configuration (wird in das Frontend eingebaut)
# Diese Felder werden automatisch im Login-Formular vorausgefüllt
VITE_OPENSUBSONIC_URL=https://your.OpenSubsonic.server
VITE_OPENSUBSONIC_USERNAME=your_OpenSubsonic_username
VITE_OPENSUBSONIC_PASSWORD=your_OpenSubsonic_password
# Unified Login Option (optional)
# Wenn auf 'true' gesetzt, werden die gleichen Credentials für beide Services verwendet
# Überschreibt die individuellen Username/Password-Felder
VITE_USE_UNIFIED_LOGIN=false
VITE_UNIFIED_USERNAME=your_unified_username
VITE_UNIFIED_PASSWORD=your_unified_password