forked from sam1am/backlogia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (35 loc) · 1.53 KB
/
.env.example
File metadata and controls
41 lines (35 loc) · 1.53 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Docker Configuration
# HTTP port for direct access (http://localhost:5050)
WEB_PORT=5050
# HTTPS reverse proxy (optional)
# Uncomment to enable HTTPS access via Caddy reverse proxy
# This is useful for the bookmarklet when accessing from HTTPS sites
# COMPOSE_PROFILES=https
#
# When enabled, Backlogia is accessible at:
# - https://backlogia.localhost (local machine only)
# - https://backlogia.local (network access, requires mDNS setup below)
#
# For network access on macOS, run in a separate terminal:
# ./scripts/advertise-mdns.sh
# On Linux hosts, mDNS is advertised automatically via Avahi
# GOG Galaxy - set the directory containing galaxy-2.0.db
# GOG_DB_PATH is automatically set in docker-compose.yml
# macOS: /Users/Shared/GOG.com/Galaxy/Storage
# Windows: C:/ProgramData/GOG.com/Galaxy/storage
GOG_DB_DIR=C:/ProgramData/GOG.com/Galaxy/storage
# Local Games - host directories containing game folders
# Each subdirectory in these paths will be treated as a game
# Up to 5 paths supported by default (add more in docker-compose.yml if needed)
# LOCAL_GAMES_DIR_1=/path/to/games
# LOCAL_GAMES_DIR_2=/mnt/storage/more-games
# LOCAL_GAMES_DIR_3=
# LOCAL_GAMES_DIR_4=
# LOCAL_GAMES_DIR_5=
# Data directory for storing Backlogia's database and config files
# This should be a persistent volume in production to retain data across container restarts
# For development, you can set this to a local directory (e.g., ./data)
# BACKLOGIA_DATA_DIR=/path/to/backlogia/root/dir
# Authentication (optional)
# ENABLE_AUTH=true
# SESSION_EXPIRY_DAYS=30