-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
49 lines (43 loc) · 2.12 KB
/
Copy path.env.example
File metadata and controls
49 lines (43 loc) · 2.12 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
41
42
43
44
45
46
47
48
49
# ==============================================================================
# TEMPLATE: DOCKER COMPOSE CONFIGURATION (PUBLIC OPEN-SOURCE)
# ==============================================================================
# Instructions:
# 1. Copy this template file to a local .env:
# cp .env.example .env
# 2. Modify paths and custom parameters as needed for your specific host.
# 3. Do NOT commit your finalized .env or .env.local file to version control.
# ==============================================================================
# SYSTEM PERMISSIONS & TIMEZONE
# ==============================================================================
# User ID (UID) and Group ID (GID) under which containers will run.
# You can check your host shell's UID/GID by running the command: id
PUID=1000
PGID=100
# Local timezone for logging, scheduling, and system operations
TZ=Europe/Paris
# ==============================================================================
# CRYPTOGRAPHIC SECRETS
# ==============================================================================
# Secure session signing key for the SearxNG container.
# IMPORTANT: Replace this placeholder string with a unique 32-byte hex key.
# You can easily generate a cryptographically secure key by running:
# openssl rand -hex 32
SEARXNG_SECRET=replace_this_with_your_random_openssl_generated_hex_secret_key
# ==============================================================================
# PUBLIC/EXTERNAL SERVICE PORTS
# ==============================================================================
SEARXNG_PORT=8888
QBITTORRENT_PORT=8080
FLARESOLVERR_PORT=8191
CHANGEDETECTION_PORT=5000
# ==============================================================================
# LOCAL STORAGE VOLUMES
# ==============================================================================
# Host media folders for book, music, and show synchronization.
# Map these paths to your system's external hard drives, SSDs, or NAS.
MEDIA_BOOKS=./media/Books
MEDIA_MUSIC=./media/Music
MEDIA_SHOWS=./media/Shows
MEDIA_MOVIES=./media/Movies
# Host target path for qBittorrent downloads
DOWNLOADS_DIR=./downloads