-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
193 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Secrets | ||
.env | ||
secrets/ | ||
|
||
# Media Center | ||
media-center/heimdall/config/ | ||
media-center/jackett/config/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
password1234 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
xxxxxxxx-xxxxxxxxxxxxx-xxxxxxxxxx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
providers.google.client-id=GoogleClientID | ||
providers.google.client-secret=GoogleClientSecret | ||
secret=RandomSecretString | ||
whitelist=you@gmail.com | ||
whitelist=another@gmail.com | ||
whitelist=yet-another@gmail.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,63 @@ | ||
################################################################################ | ||
# ENVIRONMENT SETUP | ||
# | ||
# * commented out lines are the default | ||
################################################################################ | ||
|
||
DOMAIN_NAME="example.com" | ||
|
||
ADMIN_USER="XXXXXXXXXXXXXX" | ||
ADMIN_PASSWORD="XXXXXXXXXXXXXX" | ||
# GENERATE ADMIN_HTPASSWD: docker run --rm httpd:2.4-alpine htpasswd -nbB admin <ADMIN_PASSWORD> | cut -d ":" -f 2 | ||
ADMIN_HTPASSWD="$2y$05$XXXXXXXXXXXXXX" | ||
ADMIN_USER="admin" | ||
|
||
TZ="America/Denver" | ||
TZ_7="MST7MDT" | ||
# USE `id` command to retrieve PUID and GUID | ||
PUID="1000" | ||
PGID="1000" | ||
PUID="1000" # id -u | ||
PGID="1000" # id -g | ||
|
||
UNIVERSAL_RESTART_POLICY="unless-stopped" | ||
# UNIVERSAL_RESTART_POLICY="unless-stopped" | ||
|
||
################################################################################ | ||
################################################################## | ||
# DIRECTORY SETUP | ||
################################################################################ | ||
|
||
DOCKER_DIRECTORY="/home/user/docker/homelab" | ||
TRAEFIK_DIRECTORY="/home/user/docker/homelab/traefik" | ||
MEDIA_CENTER_DIRECTORY="/home/user/docker/homelab/media-center" | ||
MISCELLANEOUS_DIRECTORY="/home/user/docker/homelab/miscellaneous" | ||
# | ||
# * You must customize these paths to match your own setup | ||
# * For my personal setup, I have a NAS mounted at /media/storage | ||
################################################################## | ||
|
||
COMPLETED_DOWNLOADS="/media/nas/downloads" | ||
INCOMPLETE_DOWNLOADS="/home/user/media/torrents" | ||
MOVIE_DIR="/media/nas/plex/movies" | ||
TV_DIR="/media/nas/plex/tv_shows" | ||
BOOKS_DIR="/media/nas/books" | ||
PLEX_TRANSCODE_DIR="/home/user/plex/transcode" | ||
DOCKER_DIRECTORY="/path/to/this/repo" | ||
|
||
SHARED_DIRECTORY="/home/user/docker" | ||
SHARED_DIRECTORY_NAME="docker" | ||
COMPLETED_DOWNLOADS="/media/storage/downloads" | ||
INCOMPLETE_DOWNLOADS="/downloads/incomplete" | ||
MOVIE_DIR="/media/storage/movies" | ||
TV_DIR="/media/storage/tv" | ||
BOOKS_DIR="/media/storage/books" | ||
# PLEX_TRANSCODE_DIR="/tmp" | ||
|
||
################################################################################ | ||
################################################################## | ||
# NETWORKING VARIABLES | ||
################################################################################ | ||
# | ||
# * You must customize these variables to match your own setup | ||
# * These are the default values for my local network | ||
################################################################## | ||
|
||
PHYSICAL_SERVER_IP="192.168.1.55" # LOCAL IP ADDRESS OF THE SERVER | ||
PHYSICAL_SERVER_NETWORK="192.168.1.0/24" # USING MY CONFIGURATION AS EXAMPLE | ||
PHYSICAL_SERVER_GATEWAY="192.168.1.1" | ||
PHYSICAL_SERVER_IP="192.168.1.55" # ip route get 1 | awk '{print $7}') | ||
PHYSICAL_SERVER_NETWORK="192.168.1.0/24" | ||
|
||
################################################################################ | ||
# VPN VARIABLES, OAUTH, DUCKDNS, CLOUDFLARE | ||
################################################################################ | ||
DUCKDNS_TOKEN=XXXXXX-XXX-XXXXX-XXXXX | ||
DUCKDNS_SUBDOMAIN=example | ||
CLOUDFLARE_EMAIL=example@gmail.com | ||
|
||
################################################################## | ||
# APP VARIABLES | ||
################################################################## | ||
|
||
### TRANSMISSION (VPN + TORRENTS) ### | ||
OPENVPN_PROVIDER=NORDVPN | ||
OPENVPN_USERNAME=example@gmail.com | ||
OPENVPN_PASSWORD=XXXXXXXXXXXXXX | ||
|
||
DUCKDNS_TOKEN=XXXXXX-XXX-XXXXX-XXXXX | ||
DUCKDNS_SUBDOMAIN=example | ||
### PLEX (CLAIM TOKEN) ### | ||
PLEX_CLAIM=XXXXXXXXXXXXXX | ||
|
||
GOOGLE_CLIENT_ID=XXXXXXXXXXXXX-XXXXXXXXXXXXXXXXX.apps.googleusercontent.com | ||
GOOGLE_CLIENT_SECRET=XXXXXXXXXXXXXX | ||
OAUTH_SECRET=RANDOM_STRING_OF_CHARACTERS | ||
OAUTH_WHITELIST=example@gmail.com,user_1@gmail.com,user_2@gmail.com | ||
|
||
CLOUDFLARE_EMAIL=example@gmail.com | ||
CLOUDFLARE_API_KEY=XXXXXXXXXXXXX | ||
### OPENAI (NEXT-WEB + SLACK BOT) ### | ||
OPENAI_API_KEY="sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" | ||
# OPENAI_MODEL="gpt-4-turbo-preview" | ||
SLACK_BOT_TOKEN=xoxb-XXXXXXXXXXX-XXXXXXXXXXX-XXXXXXXXXXX | ||
SLACK_APP_TOKEN=xapp-1-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX | ||
# SLACK_APP_LOG_LEVEL="INFO" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.