Fix type mismatches across Unraid UI pages (SystemInfo, ServerVars, Notification properties), replace unavailable Mantine components (ScrollArea.Autosize, IconHardDrive), correct Orchis theme types, add missing tRPC endpoints (users, syslog, notification actions), and configure docker-compose for Traefik reverse proxy on dockerproxy network with unmarr.xtrm-lab.org routing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
454 B
Plaintext
19 lines
454 B
Plaintext
DATABASE_URL="file:./database/db.sqlite"
|
|
|
|
# Next Auth
|
|
# You can generate a new secret on the command line with:
|
|
# openssl rand -base64 32
|
|
# https://next-auth.js.org/configuration/options#secret
|
|
AUTH_TRUST_HOST="true"
|
|
NEXTAUTH_SECRET="anything"
|
|
|
|
# Disable analytics
|
|
NEXT_PUBLIC_DISABLE_ANALYTICS="true"
|
|
|
|
DEFAULT_COLOR_SCHEME="light"
|
|
|
|
# Unraid API Configuration
|
|
UNRAID_HOST=192.168.10.20
|
|
UNRAID_API_KEY=your-api-key-here
|
|
UNRAID_USE_SSL=false
|
|
UNRAID_PORT=80 |