-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.sample
87 lines (68 loc) · 2.19 KB
/
.env.sample
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
## ------------
## Base Configs
## ------------
# Choose the applicable timezone from the list linked below:
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# Use the column that says "TZ database name".
export TIMEZONE=Asia/Calcutta
# Base path to store docker apps config data
export APP_CONFIG_DIR=/path/to/app/config
## -------------------
## MediaCenter Configs
## -------------------
# Select MediaCenter (Options: None/Plex/Jellyfin/Both)
MEDIACENTER=None
# Base path to files storage for MediaCenter
MEDIA_ONE_DIR=/path/to/storage/for/media-1
MEDIA_TWO_DIR=/path/to/storage/for/media-2
# [Optional]
# The PleX claim token is used to connect your server to your account. It can be obtained at
# https://www.plex.tv/claim/ and is valid for 4 minutes after generating the token.
PLEX_CLAIM=your-plex-claim-token
# Enable/Disable services (true/false)
ENABLE_SONARR=false
ENABLE_RADARR=false
ENABLE_LIDARR=false
ENABLE_READARR=false
ENABLE_PROWLARR=false
ENABLE_FLARESOLVERR=false
ENABLE_QBITTORRENT=false
## ------------------
## Ghostfolio Configs
## ------------------
ENABLE_GHOSTFOLIO=false
GHOSTFOLIO_REDIS_PASS=strong-password
GHOSTFOLIO_POSTGRES_DB=db-name
GHOSTFOLIO_POSTGRES_USER=user-name
GHOSTFOLIO_POSTGRES_PASS=strong-password
GHOSTFOLIO_ACCESS_TOKEN_SALT=some-secret-salt
GHOSTFOLIO_JWT_SECRET_KEY=some-secret-key
## -----------------
## NextCloud Configs
## -----------------
ENABLE_NEXTCLOUD=false
## Postgres Configurations
POSTGRES_DB=your-db-name
POSTGRES_USER=some-user-name
POSTGRES_PASSWORD=some-strong-password
## NextCloud Configurations
DATA_DIR=path/to/storage/for/nextcloud
NEXTCLOUD_ADMIN_USER=admin-username
NEXTCLOUD_ADMIN_PASSWORD=a-strong-admin-password
## -----------------------
## ChangeDetection Configs
## -----------------------
ENABLE_CHANGEDETECTION=false
## ------------------
## Misc Tools Configs
## ------------------
## Nginx Proxy Manager Configurations
ENABLE_NGINX_PROXY_MANAGER=false
MYSQL_ROOT_PASSWORD=some-strong-root-password
MYSQL_DATABASE=your-db-name
MYSQL_USER=some-user-name
MYSQL_PASSWORD=some-strong-password
TS_CLIENT_SECRET=some-tailscale-client-secret
ENABLE_TUNNEL_PRIME=false
TUNNEL_PRIME_TOKEN=auth-token-for-tunnel
ENABLE_PORTAINER=false