forked from ghostserverd/mediaserver-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env_sample
103 lines (86 loc) · 2.93 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# ======== directories ========
CONFIG_DIR=/media/usb1-mount/config
DOWNLOAD_DIR=/media/usb1-mount/downloads
MEDIA_DIR=/media/usb1-mount
MEDIA_DIR2=/media/usb2-mount
TV_DIR=/media/usb1-mount/media/tv
MOVIES_DIR=/media/usb1-mount/media/movies
### base dir should be a directory that contains both downloads and media to take advantage of hardlinks
BASE_DIR=/media/usb2-mount
# ======== user ========
PUID=1000
PGID=100
TIMEZONE=America/Chicago
# ======== transmission ========
TRANS_WEBUI_USER=[REPLACEME]
TRANS_WEBUI_PASS=[REPLACEME]
TRANS_WEBUI_PORT=5656
TRANS_CONNECTION_PORT=51413
### retain torrents for up to this many seconds
TRANS_MAX_RETENTION=2592000
### retain torrents until they reach this ratio
TRANS_MAX_RATIO=10
# ======== filebot ========
FILEBOT_PORT=7676
### results in file names like "The Expanse - S02E07 - The Seventh Man - HD.mkv"
FILEBOT_FORMAT={plex} - {hd}
### prefer titles from the last 30 days but fall back to any title if there are none recent enough
FILEBOT_FILTER=any{ age < 30 }{ true } || !model.any{ it.age < 30 && it.age != null }
### duplicate will fall back to copy if hardlink fails. set to "hardlink" to confirm if hardlinks are working
FILEBOT_ACTION=duplicate
### filebot will intelligently decide whether or not to replace an existing copy
FILEBOT_CONFLICT=auto
### defaults to TheTVDB but TheTVDB has been having issues for most of 2020
FILEBOT_SERIES_DB=TheMovieDB::TV
FILEBOT_ANIME_DB=AniDB
FILEBOT_MOVIE_DB=TheMovieDB
FILEBOT_MUSIC_DB=ID3
### not currently functional
OPEN_SUB_USER=[REPLACEME]
### not currently functional
OPEN_SUB_PASS=[REPLACEME]
# ======== nzbget ========
NZBGET_PORT=7890
NZBGET_WEB_USER=admin
NZBGET_WEB_PASS=[REPLACEME]
### don't change these unless you really know what you're doing
NZBGET_MAIN_DIR=/data/usenet
NZBGET_SCRIPT_DIR=/usr/local/bin
# ======== qbit ========
QBIT_PORT=8888
# ======== overseerr ========
OVERSEERR_PORT=5055
# ======== sonarr ========
SONARR_PORT=8989
# ======== radarr ========
RADARR_PORT=7878
# ======== bazaar ========
BAZARR_PORT=6767
# ======== jackett ========
JACKETT_PORT=9117
# ======== plex ========
### install trakt and subzero but you might need Kitana to see the UI
PLUGIN_LIST=trakt subzero
PLEX_WEB_PORT=32400
# ======== tautulli ========
TAUTULLI_PORT=8181
# ======== heimdall ========
HEIMDALL_PORT=8888
HEIMDALL_SSL_PORT=4444
# ======== wireguard ========
### the local network of your host machine to allow access to the service from the local network. required for VPN port forwarding.
LOCAL_NETWORK=192.168.10.0/24
# ======== letsencrypt ========
### a domain like "somedomain.com"
LE_HOSTNAME=[REPLACEME]
### an email at your above domain like "me@somedomain.com"
LE_EMAIL=[REPLACEME]
### a comma separated list of subdomains to set up letsencrypt certs for
LE_SUBDOMAINS=r,s,t,n,p,m,u,h,b
NGINX_USER=[REPLACEME]
### not currently functional
NGINX_PASS=[REPLACEME]
# ======== netdata ========
NETDATA_PORT=19999
# ======== portainer ========
PORTAINER_PORT=9000