README update v1
added the first revision of README
814
README.md
Normal file
@ -0,0 +1,814 @@
|
||||
## Quick Arr Stack
|
||||
|
||||
TV shows and movies download, sort, with the desired quality and subtitles, behind a VPN (optional), ready to watch, in a beautiful media player.
|
||||
All automated.
|
||||
|
||||
On top of the original configurations added information related to the PureVPN configurations and added an wireguard docker to acess content of the media center outside the home networkd without the need of open the Plex port.
|
||||
|
||||
|
||||
_Disclaimer: I'm not encouraging/supporting piracy, this is for information purpose only._
|
||||
|
||||
## Table of Contents
|
||||
|
||||
- [Quick Arr Stack](#Quick-Arr-Stack)
|
||||
- [Table of Contents](#table-of-contents)
|
||||
- [Overview](#overview)
|
||||
- [Hardware configuration](#hardware-configuration)
|
||||
- [Software stack](#software-stack)
|
||||
- [Installation guide](#Installation-guide)
|
||||
- [Install docker and docker-compose](#install-docker-and-docker-compose)
|
||||
- [Clone the repository](#Clone-the-repository)
|
||||
- [Setup environment variables](#Setup-environment-variables)
|
||||
- [Setup a VPN Container](#setup-a-vpn-container)
|
||||
- [VPN Option](#VPN-Option)
|
||||
- [Folder Setup](#Folder-Structure)
|
||||
- [purevpn.com custom setup](#purevpncom-custom-setup)
|
||||
- [Docker container](#vpn-docker-container)
|
||||
- [Setup Deluge](#setup-deluge)
|
||||
- [Docker container](#deluge-docker-container)
|
||||
- [Configuration](#deluge-configuration)
|
||||
- [Setup Plex](#setup-plex)
|
||||
- [Media Server Docker Container](#media-server-docker-container)
|
||||
- [Configuration](#plex-configuration)
|
||||
- [Setup Sonarr](#setup-sonarr)
|
||||
- [Docker container](#Sonarr-docker-container)
|
||||
- [Configuration](#sonarr-configuration)
|
||||
- [Setup Radarr](#setup-radarr)
|
||||
- [Docker container](#Radarr-docker-container)
|
||||
- [Configuration](#radarr-configuration)
|
||||
- [Setup Prowlarr](#setup-Prowlarr)
|
||||
- [Docker container](#Prowlarr-Docker-container)
|
||||
- [Configuration](#Prowlarr-configuration)
|
||||
- [Setup Bazarr](#setup-bazarr)
|
||||
- [Bazarr Docker container](#bazarr-docker-container)
|
||||
- [Bazarr Configuration](#bazarr-configuration)
|
||||
- [Testing](#Testing)
|
||||
- [Optional containers](#Optional-containers)
|
||||
- [Setup Wireguard](#setup-wireguard)
|
||||
- [Docker container](#Wireguard-Docker-container)
|
||||
- [Configuration and usage](#Wireguard-Configuration)
|
||||
- [Setup Overseerr](#Overseerr-Setup)
|
||||
- [Docker container](#Overseerr-Docker-Container)
|
||||
- [Configuration and usage](#Overseerr-Configuration)
|
||||
- [Manage it all from your mobile](#manage-it-all-from-your-mobile)
|
||||
|
||||
## Overview
|
||||
|
||||
This is a quick guide of how to build a server with a [Servarr stack](https://wiki.servarr.com/)
|
||||
|
||||
How does it work?
|
||||
|
||||
This is composed by multiple tools working together to have an automated way to monitor and watch your favorite TV Shows and Movies
|
||||
|
||||
**Downloaders**:
|
||||
|
||||
- [OpenVPN Client](https://github.com/dperson/openvpn-client) (optional but highly recomended): container is used to Deluge and Prowlarr to encapsulate the incoming/outgoing traffic.
|
||||
- [Deluge](http://deluge-torrent.org/) handles torrent download.
|
||||
- [Prowlarr](https://prowlarr.com/): is an indexer manager/proxy built on the popular *arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports management of both Torrent Trackers and Usenet Indexers.
|
||||
- [Bazarr](https://www.bazarr.media/) is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.
|
||||
|
||||
**Download orchestration**:
|
||||
|
||||
- [Sonarr](https://sonarr.tv): manage TV show, automatic downloads, sort & rename
|
||||
- [Radarr](https://radarr.video): basically the same as Sonarr, but for movies
|
||||
|
||||
**Media Center**:
|
||||
|
||||
- [Plex](https://plex.tv): media center server with streaming transcoding features, useful plugins and a beautiful UI. Clients available for a lot of systems (Linux/OSX/Windows, Web, Android, Chromecast, Android TV, etc.)
|
||||
|
||||
|
||||
**Optional**:
|
||||
|
||||
- [Overseerr](https://overseerr.dev/): is a free and open source software application for managing requests for your media library. It integrates with your existing services, such as Sonarr, Radarr, and Plex!
|
||||
|
||||
- [Wireguard](https://github.com/linuxserver/docker-wireguard): is an extremely simple yet fast and modern VPN that utilizes state-of-the-art cryptography. This will allow to connect to our home network without from anyware and use the plex app outside of our house without a plex pass subscription.
|
||||
|
||||
## Hardware configuration
|
||||
|
||||
You can use a old Laptop with Debian, Raspberry Pi, a Synology NAS, a Windows or Mac computer. The stack should work fine on all these systems, but you'll have to adapt the Docker stack below to your OS. I'll only focus on a standard Linux installation here.
|
||||
|
||||
Keep in mind that all the movies and shows are downloaded to your computer, so a Hard Drive with high capacity is recomended.
|
||||
|
||||
## Software stack
|
||||
|
||||

|
||||
|
||||
## Installation guide
|
||||
|
||||
### Install docker and docker-compose
|
||||
|
||||
See the [official instructions](https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#install-docker-ce-1) to install Docker.
|
||||
|
||||
Then add yourself to the `docker` group:
|
||||
`sudo usermod -aG docker myuser`
|
||||
|
||||
Make sure it works fine:
|
||||
`docker run hello-world`
|
||||
|
||||
Also install docker-compose (see the [official instructions](https://docs.docker.com/compose/install/#install-compose)).
|
||||
|
||||
### Clone the repository
|
||||
|
||||
This tutorial will guide you along the full process of making your own docker-compose file and configuring every app within it, however, to prevent errors or to reduce your typing, you can also use the general-purpose docker-compose file provided in this repository.
|
||||
|
||||
1. First, `git clone https://github.com/Rick45/quick-arr-Stack` into a directory. This is where you will run the full setup from (note: this isn't the same as your configuration or media directory)
|
||||
2. Rename the `.env.example` file included in the repo to `.env`.
|
||||
3. Continue this guide, and the docker-compose file snippets you see are already ready for you to use. You'll still need to manually configure your `.env` file and other manual configurations.
|
||||
|
||||
### Setup environment variables
|
||||
|
||||
Rename the `.env.example` file included in the repo to `.env`.
|
||||
|
||||
Here is an example of what your `.env` file should look like, use values that fit for your own setup.
|
||||
|
||||
```sh
|
||||
# Your timezone, https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||
TZ=Europe/Lisbon
|
||||
# UNIX PUID and PGID, find with: id $USER
|
||||
PUID=1000
|
||||
PGID=1000
|
||||
# The directory where configuration will be stored.
|
||||
ROOT=/home/{youruser}/ #update the {youruser} with your user path
|
||||
# The directory where data will be stored.
|
||||
HDDSTORAGE=/home/{youruser}/Storage/ #update the {youruser} with your user path
|
||||
|
||||
# Wireguard Settings
|
||||
#Your public ip, auto for auto detect
|
||||
SERVERURL=auto
|
||||
#number of devices to generate configuration to connect to the wireguard vpn
|
||||
PEERS=7
|
||||
```
|
||||
|
||||
Things to notice:
|
||||
|
||||
- TZ is based on your [tz time zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
|
||||
- The PUID and PGID are your user's ids. Find them with `id $USER`.
|
||||
- This file should be in the same directory as your `docker-compose.yml` file so the values can be read in.
|
||||
|
||||
|
||||
***
|
||||
|
||||
### Setup a VPN Container
|
||||
|
||||
#### VPN Option
|
||||
|
||||
If you do not owne a VPN you can bypass this step.
|
||||
- Is required to comment the hilighed lines in the `docker-compose.yml`
|
||||
example:
|
||||
```sh
|
||||
#ports:
|
||||
# - '8112:8112' #uncomment if you are not using the VPN
|
||||
network_mode: 'service:vpn' #comment/remove if you are not using the VPN
|
||||
depends_on: #comment/remove if you are not using the VPN
|
||||
- vpn #comment/remove if you are not using the VPN
|
||||
```
|
||||
|
||||
The goal here is to have an OpenVPN Client container running and always connected. We'll make Deluge incoming and outgoing traffic go through this OpenVPN container.
|
||||
|
||||
This must come up with some safety features:
|
||||
|
||||
Configuration is explained on the [project page](https://github.com/dperson/openvpn-client), you can follow it.
|
||||
However it is not that easy depending on your VPN server settings.
|
||||
I'm using a purevpn.com VPN, so here is how I set it up.
|
||||
|
||||
|
||||
#### Folder Structure
|
||||
_Note: You may need to `sudo chown -R $USER:$USER /path/to/ROOT/directory` and `sudo chown -R $USER:$USER /path/to/HDDSTORAGE/directory` so you can create folders and copy and paste files, this could be also required for Sonarr and Radarr to do some opetations.
|
||||
|
||||
After this 2 commands you should be abble to create, copy and paste files inside the new two folders.
|
||||
|
||||
After this Create 2 folders in the `Storage\Completed` folder, `Movies` and `TV`, this will be used later.
|
||||
Currently i'm doing this in this way as it is(for what i found) the best way to have the files [Hard link](https://en.wikipedia.org/wiki/Hard_link) to work without issues. This halves the amount of size while the torrent is seeding.
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
#### purevpn.com custom setup
|
||||
|
||||
_Note_: this section only applies for [PureVPN](purevpn.com) accounts.
|
||||
|
||||
1. Delete all content in `${ROOT}/config/vpn` and replace it by the ones available in the repo folder `Config Files\config\vpn(PureVPN)`
|
||||
1. Download the openVPN filed from [PureVPN website](https://support.purevpn.com/openvpn-files).
|
||||
1. Open the file in the udp folder related to the country/connection that you want to use.
|
||||
1. Copy the remote value in the file and replace it on the vpn.conf file that is
|
||||
|
||||
|
||||
#### VPN Docker container
|
||||
|
||||
Your docker-compose file should have something like this:
|
||||
|
||||
```yaml
|
||||
|
||||
vpn:
|
||||
container_name: vpn
|
||||
image: 'dperson/openvpn-client:latest'
|
||||
environment:
|
||||
- 'OTHER_ARGS= --mute-replay-warnings'
|
||||
cap_add:
|
||||
- net_admin
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/vpn:/vpn'
|
||||
security_opt:
|
||||
- 'label:disable'
|
||||
devices:
|
||||
- '/dev/net/tun:/dev/net/tun'
|
||||
ports:
|
||||
- '8112:8112' #deluge web UI Port
|
||||
command: '-f "" -r 192.168.68.0/24'
|
||||
|
||||
```
|
||||
|
||||
Then run the container with `docker-compose up -d --remove-orphans`.
|
||||
|
||||
To follow container logs, run `docker-compose logs -f vpn`.
|
||||
|
||||
|
||||
|
||||
### Setup Deluge
|
||||
|
||||
#### Deluge Docker container
|
||||
|
||||
We'll use deluge Docker image from linuxserver, which runs both the deluge daemon and web UI in a single container.
|
||||
|
||||
```yaml
|
||||
deluge:
|
||||
container_name: deluge
|
||||
image: 'linuxserver/deluge:latest'
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=${PUID} # default user id, defined in .env
|
||||
- PGID=${PGID} # default group id, defined in .env
|
||||
- TZ=${TZ} # timezone, defined in .env
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/deluge:/config' # config files
|
||||
- '${HDDSTORAGE}:/MediaCenterBox' # downloads folder
|
||||
network_mode: 'service:vpn' #comment/remove if you are not using the VPN
|
||||
depends_on: #comment/remove if you are not using the VPN
|
||||
- vpn # run on the vpn network #comment/remove if you are not using the VPN
|
||||
|
||||
```
|
||||
|
||||
Things to notice:
|
||||
|
||||
- I use the host network to simplify configuration. Important ports are `8112` (web UI) and `58846` (bittorrent daemon).
|
||||
|
||||
Then run the container with `docker-compose up -d --remove-orphans`.
|
||||
|
||||
To follow container logs, run `docker-compose logs -f deluge`.
|
||||
|
||||
|
||||
***
|
||||
|
||||
#### Deluge Docker container
|
||||
|
||||
NOTE(Not Advised): If you dont own a VPN and want to use this without VPN use the follwing compose, this WILL EXPOSE your real IP adress.
|
||||
```yaml
|
||||
|
||||
deluge:
|
||||
container_name: deluge
|
||||
image: 'linuxserver/deluge:latest'
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- 'PUID=${PUID}'
|
||||
- 'PGID=${PGID}'
|
||||
- 'TZ=${TZ}'
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/deluge:/config'
|
||||
- '${HDDSTORAGE}:/MediaCenterBox'
|
||||
#ports:
|
||||
# - '8112:8112' #uncomment if you are not using the VPN
|
||||
network_mode: 'service:vpn' #comment/remove if you are not using the VPN
|
||||
depends_on: #comment/remove if you are not using the VPN
|
||||
- vpn #comment/remove if you are not using the VPN
|
||||
|
||||
```
|
||||
|
||||
|
||||
#### Deluge Configuration
|
||||
|
||||
##### NOTE: if the bellow page does not open and you are using the VPN normally is means that something is wrong with the vpn itself!
|
||||
|
||||
You should be able to login on the web UI (`localhost:8112`, replace `localhost` by your machine ip if needed).
|
||||
|
||||

|
||||
|
||||
|
||||
The default password is `deluge`. You are asked to modify it.
|
||||
|
||||
The running deluge daemon should be automatically detected and appear as online, you can connect to it.
|
||||
|
||||

|
||||
|
||||
You may want to change the download directory. I like to have to distinct directories for incomplete (ongoing) downloads, and complete (finished) ones.
|
||||
Also, I set up a blackhole directory: every torrent file in there will be downloaded automatically. This is useful for Jackett manual searches.
|
||||
|
||||
You should activate `autoadd` in the plugins section: it adds supports for `.magnet` files.
|
||||
|
||||

|
||||
|
||||
|
||||
You should activate `Label` in the plugins section: it adds supports for labels in sonarr and radarr
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
Configuration gets stored automatically in your mounted volume (`${ROOT}/config/deluge`) to be re-used at container restart. Important files in there:
|
||||
|
||||
- `auth` contains your login/password
|
||||
- `core.conf` contains your deluge configuration
|
||||
|
||||
You can use the Web UI manually to download any torrent from a .torrent file or magnet hash.
|
||||
|
||||
|
||||
Notice how deluge is now using the vpn container network, with deluge web UI and prowlarr port exposed on the vpn container for local network access.
|
||||
|
||||
You can check that deluge is properly going out through the VPN IP by using [torguard check](https://torguard.net/checkmytorrentipaddress.php).
|
||||
Get the torrent magnet link there, put it in Deluge, wait a bit, then you should see your outgoing torrent IP on the website.
|
||||
|
||||

|
||||
|
||||
|
||||
***
|
||||
|
||||
### Setup Plex
|
||||
|
||||
#### Media Server Docker Container
|
||||
|
||||
Plex team already provides a maintained [Docker image for pms](https://github.com/plexinc/pms-docker).
|
||||
|
||||
We'll use the host network directly, and run our container with the following configuration:
|
||||
|
||||
```yaml
|
||||
plex-server:
|
||||
container_name: plex-server
|
||||
image: 'plexinc/pms-docker:latest'
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- 'TZ=${TZ}'
|
||||
network_mode: host
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/plex/db:/config' #plex configs
|
||||
- '${ROOT}/MediaCenter/config/plex/transcode:/transcode' # temp transcoded files
|
||||
- '${HDDSTORAGE}/Completed:/HDD_Completed' #Media location TV Shows/Movies
|
||||
```
|
||||
|
||||
Then run the container with `docker-compose up -d --remove-orphans`.
|
||||
|
||||
To follow container logs, run `docker-compose logs -f plex-server`.
|
||||
|
||||
#### Plex Configuration
|
||||
|
||||
Plex Web UI should be available at `localhost:32400/web` (replace `localhost` by your server ip if needed).
|
||||
You'll have to login first (registration is free), then Plex will ask you to add your libraries.
|
||||
I have two libraries:
|
||||
|
||||
- Movies
|
||||
- TV shows
|
||||
|
||||
Add these the library paths:
|
||||
|
||||
- Movies: `/MediaCenterBox/Movies`
|
||||
- TV: `/MediaCenterBox/TV`
|
||||
|
||||
Example:
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
As you'll see later, these library directories will each have files automatically placed into them with Radarr (movies) and Sonarr (tv), respectively.
|
||||
|
||||
Now, Plex will then scan your files and gather extra content; it may take some time according to how large your directory is.
|
||||
|
||||
A few things I like to configure in the settings:
|
||||
|
||||
- Tick "Update my library automatically"
|
||||
|
||||
You can already watch your stuff through the Web UI.
|
||||
|
||||
***
|
||||
|
||||
|
||||
|
||||
### Setup Sonarr
|
||||
|
||||
#### Sonarr Docker container
|
||||
|
||||
The docker file should look like this:
|
||||
|
||||
```yaml
|
||||
sonarr:
|
||||
container_name: sonarr
|
||||
image: 'linuxserver/sonarr:latest'
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
environment:
|
||||
- 'PUID=${PUID}'
|
||||
- 'PGID=${PGID}'
|
||||
- 'TZ=${TZ}'
|
||||
volumes:
|
||||
- '/etc/localtime:/etc/localtime:ro'
|
||||
- '${ROOT}/MediaCenter/config/sonarr:/config' #config Folder
|
||||
- '${HDDSTORAGE}:/MediaCenterBox' #data Folder
|
||||
```
|
||||
|
||||
Then run the container with `docker-compose up -d --remove-orphans`.
|
||||
|
||||
To follow container logs, run `docker-compose logs -f sonarr`.
|
||||
|
||||
Sonarr web UI listens on port 8989 by default. You need to mount your tv shows directory (the one where everything will be nicely sorted and named). And your download folder, because sonarr will look over there for completed downloads, then move them to the appropriate directory.
|
||||
|
||||
#### Sonarr Configuration
|
||||
|
||||
Sonarr should be available on `localhost:8989`. Go straight to the `Settings` tab.
|
||||
|
||||
|
||||
Sonarr should be ready out of the box, there are multiple settings and configurations that you can explore later but we are going to start with the basics.
|
||||
|
||||
`Root Folders` is in the Media Management tab, here we add the `/MediaCenterBox/Completed/TV/` folder. This will be the default derectory where all the TV Shows will be stored
|
||||
|
||||

|
||||
|
||||
`Download Clients` tab is where we'll configure links with our tdownload client Deluge.
|
||||
There are existing presets for these 2 that we'll fill with the proper configuration.
|
||||
|
||||
Deluge configuration:
|
||||
|
||||

|
||||
|
||||
Enable `Advanced Settings`, and tick `Remove Completed` in the Completed Download Handling section. This tells Sonarr to remove torrents from deluge once processed.
|
||||
|
||||
|
||||
`Indexers` is the important tab: that's where Sonarr will grab information about released episodes. This will be automatically configurated by [Prowlarr](#Setup-Prowlarr)
|
||||
|
||||
|
||||
In `Connect` tab, we'll configure Sonarr to send notifications to Plex when a new episode is ready:
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
### Setup Radarr
|
||||
|
||||
Radarr is a fork of Sonarr, made for movies instead of TV shows. For a good while I've used CouchPotato for that exact purpose, but have not been really happy with the results. Radarr intends to be as good as Sonarr !
|
||||
|
||||
#### Radarr Docker container
|
||||
|
||||
Radarr is very similar to Sonarr.
|
||||
|
||||
```yaml
|
||||
|
||||
radarr:
|
||||
container_name: radarr
|
||||
image: 'linuxserver/radarr:latest'
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
environment:
|
||||
- PUID=${PUID} # default user id, defined in .env
|
||||
- PGID=${PGID} # default group id, defined in .env
|
||||
- TZ=${TZ} # timezone, defined in .env
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- ${ROOT}/config/radarr:/config # config files
|
||||
- ${ROOT}/complete/movies:/movies # movies folder
|
||||
- ${ROOT}/downloads:/downloads # download folder
|
||||
```
|
||||
|
||||
|
||||
Then run the container with `docker-compose up -d --remove-orphans`.
|
||||
|
||||
To follow container logs, run `docker-compose logs -f radarr`.
|
||||
|
||||
#### Radarr Configuration
|
||||
|
||||
Radarr should be available on `localhost:7878`. Go straight to the `Settings` tab.
|
||||
|
||||
Radarr should be ready out of the box, there are multiple settings and configurations that you can explore later but we are going to start with the basics.
|
||||
|
||||
`Root Folders` is in the Media Management tab, here we add the `/MediaCenterBox/Completed/Movies/` folder. This will be the default derectory where all the TV Shows will be stored
|
||||
|
||||

|
||||
|
||||
`Download Clients` tab is where we'll configure links with our tdownload client Deluge.
|
||||
There are existing presets for these 2 that we'll fill with the proper configuration.
|
||||
|
||||
Deluge configuration:
|
||||
|
||||

|
||||
|
||||
Enable `Advanced Settings`, and tick `Remove Completed` in the Completed Download Handling section. This tells Sonarr to remove torrents from deluge once processed.
|
||||
|
||||
|
||||
`Indexers` is the important tab: that's where Radarr will grab information about released episodes. This will be automatically configurated by [Prowlarr](#Setup-Prowlarr)
|
||||
|
||||
|
||||
In `Connect` tab, we'll configure Sonarr to send notifications to Plex when a new episode is ready:
|
||||
|
||||

|
||||
|
||||
|
||||
***
|
||||
### Setup Prowlarr
|
||||
|
||||
[Prowlarr](https://prowlarr.com/) translates request from Sonarr and Radarr to searches for torrents on popular torrent websites.
|
||||
|
||||
#### Prowlarr Docker container
|
||||
|
||||
|
||||
```yaml
|
||||
prowlarr:
|
||||
image: lscr.io/linuxserver/prowlarr:latest
|
||||
container_name: prowlarr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- 'TZ=${TZ}'
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/prowlarr:/config'
|
||||
restart: unless-stopped
|
||||
#ports:
|
||||
# - '9696:9696' #uncomment if you are not using the VPN
|
||||
network_mode: 'service:vpn' #comment/remove if you are not using the VPN
|
||||
depends_on: #comment/remove if you are not using the VPN
|
||||
- vpn #comment/remove if you are not using the VPN
|
||||
|
||||
```
|
||||
|
||||
Nothing particular in this configuration, it's pretty similar to other linuxserver.io images.
|
||||
|
||||
Then run the container with `docker-compose up -d --remove-orphans`.
|
||||
|
||||
To follow container logs, run `docker-compose logs -f prowlarr`.
|
||||
|
||||
#### Prowlarr Configuration
|
||||
|
||||
Prowlarr web UI is available on port 9696(`localhost:9696`, replace `localhost` by your machine ip if needed).
|
||||
|
||||
|
||||
On login it will request to setup a login method, any one works, as example i have used the forms option
|
||||
|
||||

|
||||
|
||||
|
||||
Click on `Add Indexer` and add any torrent indexer that you like. I added 1337x as example.
|
||||
|
||||

|
||||
|
||||
|
||||
Click on `Apps` and add the Sonarr and Radarr App, this will require a API key that you can get in the Radarr and Sonarr apps in the `Settings - General` then `Security`
|
||||
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
|
||||
Do the Same for the Sonarr app and click in the `Sync App Indexers` button
|
||||
|
||||
|
||||
Now on Sonar and Radarr in the Settings - Indexers Tab it will show the indexer added in Prowlarr
|
||||
|
||||

|
||||
|
||||
|
||||
***
|
||||
|
||||
|
||||
### Setup Bazarr
|
||||
|
||||
[Bazarr](https://www.bazarr.media/) hooks directly into Radarr and Sonarr and makes the process more effective and painless. If you don't care about subtitles go ahead and skip this step.
|
||||
|
||||
#### Bazarr Docker container
|
||||
|
||||
The docker file should look like this:
|
||||
|
||||
|
||||
```yaml
|
||||
bazarr:
|
||||
container_name: bazarr
|
||||
image: 'linuxserver/bazarr:latest'
|
||||
restart: unless-stopped
|
||||
#network_mode: host
|
||||
environment:
|
||||
- 'PUID=${PUID}'
|
||||
- 'PGID=${PGID}'
|
||||
- 'TZ=${TZ}'
|
||||
- UMASK_SET=022
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/bazarr:/config' # config files
|
||||
- '${HDDSTORAGE}:/MediaCenterBox' # Media folder
|
||||
ports:
|
||||
- '6767:6767'
|
||||
|
||||
```
|
||||
|
||||
|
||||
Nothing particular in this configuration, it's pretty similar to other linuxserver.io images.
|
||||
|
||||
Then run the container with `docker-compose up -d --remove-orphans`.
|
||||
|
||||
To follow container logs, run `docker-compose logs -f bazarr`.
|
||||
|
||||
|
||||
#### Bazarr Configuration
|
||||
|
||||
The Web UI for Bazarr will be available on port 6767. Load it up and you will be greeted with this setup page:
|
||||
|
||||
You can skip this page and go to the `Languages` tab. Here as an example i'm setting 2 laguages to be fetch, English and Portuguese
|
||||
|
||||

|
||||
|
||||
Now we are going to create a profile that whill define the type of subtitles that we whant.
|
||||
|
||||

|
||||
|
||||
At last we are going to set this profile as default for Movies and TV shows at the bottom of the page.
|
||||
|
||||

|
||||
|
||||
Hit Save on the top of the page and move to the next step.
|
||||
|
||||
|
||||
Now go to the `Providers` tab. Here you can add all the providers that you choose from the provided list, for not i will use [Open Subtitles](https://www.opensubtitles.org/). If you don't have an account head on over to the [Registration page](https://www.opensubtitles.org/en/newuser) and make a new account.
|
||||
|
||||

|
||||
|
||||
Hit Save on the top of the page and move to the next step.
|
||||
|
||||
Now we are going to enable the Sonarr and Radarr integrations. Go to the Sonarr tab and hit the enabled toggle.
|
||||
Here we need to change the address to the `IP` otherweise bazerr will not detect, change the ip address of your machine, on my example is the `192.168.0.144`, and set the Sonarr API key as we have done during the [Prowlarr configuration](#Prowlarr-configuration) then hit test.
|
||||
|
||||
|
||||

|
||||
|
||||
Hit Save on the top of the page and move to the Radarr Tab, do the same steps as above but using the Radarr API key, then hit Save on the top of the page and move to the next step.
|
||||
|
||||
After this setps you should see two new tabs, `Series` and `Movies`, this will be here where all the movies and tv shows are listed and the subtitles status of them.
|
||||
|
||||

|
||||
|
||||
After this all the required configurations are done and everything should work.
|
||||
|
||||
|
||||
|
||||
#### Testing
|
||||
|
||||
Go to Radarr to the `Movies` tab and click on `Add New`, search for a Movie, i'm going to use `The Last Man on Earth (1964)` as is a Public Domain Movie.
|
||||
This will be automatically fill all the required information. You can adapt this parameters as you see fit. Make sure that you define a `Monitor` type so the movie is automatically downloaded
|
||||
|
||||
|
||||
|
||||
No if you click in `Movies` tab the added movie will display with a collor showing the current status of it, some secconds after it should automatically start to download.
|
||||

|
||||
|
||||
Is also possible to manually serach and many other options but that is beyound the scope of this guide.
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
When download is over, you can head over to Plex and chekc if the movie appeared correctly, with all metadata and subtitles grabbed automatically.
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#### Optional containers
|
||||
|
||||
The following containers are nice to have and are not required for the "mediaBox experience", they can be removed from the docker composed without any impact for all the system.
|
||||
|
||||
|
||||
|
||||
### Setup Wireguard
|
||||
We'll use Wireguard Docker image from linuxserver https://hub.docker.com/r/linuxserver/wireguard
|
||||
This container will allow to connect to all your services outside your home network exposing only one port
|
||||
|
||||
|
||||
#### Wireguard Docker container
|
||||
|
||||
```yaml
|
||||
wireguard:
|
||||
image: ghcr.io/linuxserver/wireguard:latest
|
||||
container_name: wireguard
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
- SYS_MODULE
|
||||
environment:
|
||||
- PUID=${PUID} # default user id, defined in .env
|
||||
- PGID=${PUID} # default user id, defined in .env
|
||||
- TZ=${TZ} # timezone, defined in .env
|
||||
- SERVERURL=${SERVERURL} # server public ip, auto to auto find, defined in .env
|
||||
- SERVERPORT=51820 #optional
|
||||
- PEERS=${PEERS} # number of clients to be auto configured, defined in .env
|
||||
- PEERDNS=auto #optional
|
||||
- INTERNAL_SUBNET=172.168.69.0 #optional, network for devices ips. CAN NOT be the same as your home network
|
||||
- ALLOWEDIPS=0.0.0.0/0 #optional
|
||||
volumes:
|
||||
- ${ROOT}/MediaCenter/config/wireguard:/config # config folder
|
||||
- /lib/modules:/lib/modules
|
||||
ports:
|
||||
- 51820:51820/udp
|
||||
sysctls:
|
||||
- net.ipv4.conf.all.src_valid_mark=1
|
||||
restart: always
|
||||
|
||||
|
||||
```
|
||||
|
||||
Nothing particular in this configuration, it's pretty similar to other linuxserver.io images.
|
||||
|
||||
Then run the container with `docker-compose up -d --remove-orphans`.
|
||||
|
||||
To follow container logs, run `docker-compose logs -f wireguard`.
|
||||
|
||||
|
||||
#### Wireguard Configuration
|
||||
|
||||
|
||||
_Note_: Its required to open the port 51820 in your routher to be abbe to connect with the vpn to your home network.
|
||||
|
||||
All the users credentials will be crated inside the config folder for wireguard ${ROOT}/MediaCenter/config/wireguard/peerX where peerX will be peer1, 2, 3,...
|
||||
|
||||
|
||||
***
|
||||
|
||||
|
||||
## Overseerr Setup
|
||||
|
||||
We'll use Overseerr official Docker image https://hub.docker.com/r/sctx/overseerr
|
||||
Overseerr is a request management and media discovery tool built to work with your existing Plex ecosystem.
|
||||
Overseerr helps you find media you want to watch. With inline recommendations and suggestions, you will find yourself deeper and deeper in a rabbit hole of content you never knew you just had to have.
|
||||
|
||||
It will allow you to request Movies and TV Shows without the need to go to Radarr ou Sonarr, this is really helpfull when there are other users in the system that we dont whant to give access to Sonarr or Radarr
|
||||
|
||||
### Overseerr Docker Container
|
||||
|
||||
|
||||
```yaml
|
||||
overseerr:
|
||||
image: sctx/overseerr:latest
|
||||
container_name: overseerr
|
||||
environment:
|
||||
- LOG_LEVEL=debug
|
||||
- TZ=${TZ}
|
||||
ports:
|
||||
- 5055:5055
|
||||
volumes:
|
||||
- ${ROOT}/MediaCenter/config/overseerr/config:/app/config
|
||||
restart: unless-stopped
|
||||
```
|
||||
|
||||
|
||||
Then run the container with `docker-compose up -d --remove-orphans`.
|
||||
|
||||
To follow container logs, run `docker-compose logs -f overseerr`.
|
||||
|
||||
|
||||
#### Overseerr Configuration
|
||||
|
||||
The Web UI for Overseerr will be available on port 5055. Load it up and you will be greeted with this setup page:
|
||||
|
||||

|
||||
|
||||
You will need to login with your plex account.
|
||||
|
||||
In the following screen fill the requested information
|
||||
|
||||
Server: Manual Configuration
|
||||
Hostmane or IP Address: your Plex Docker container IP
|
||||
Port: your Plex Docker container port
|
||||
|
||||
Select the Libraries that you want to scan and hit Start Scan
|
||||
|
||||

|
||||
|
||||
|
||||
Radarr and Sonarr Setup
|
||||
in the follwing screen configure the both radarr and sonarr
|
||||
|
||||

|
||||
|
||||
for each we need to define it as default server set the IP adress (the port should be the default one) and the API Key, them click on test.
|
||||
after that fill the remaining settings with your desired configuration.
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
## Manage it all from your mobile
|
||||
|
||||
[Lunsea](https://www.lunasea.app/), Open source manager
|
||||
|
||||
[nzb360](http://nzb360.com), more powerfull than lunasea with an free and payd version.
|
||||
|
||||
_Note_: This only work inside you home network.
|
@ -103,18 +103,33 @@ services:
|
||||
- '${ROOT}/MediaCenter/config/plex/transcode:/transcode'
|
||||
- '${HDDSTORAGE}/Completed:/MediaCenterBox'
|
||||
|
||||
tautulli:
|
||||
image: lscr.io/linuxserver/tautulli
|
||||
container_name: tautulli
|
||||
|
||||
### Optional Containers
|
||||
|
||||
wireguard:
|
||||
image: ghcr.io/linuxserver/wireguard:latest
|
||||
container_name: wireguard
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
- SYS_MODULE
|
||||
environment:
|
||||
- 'PUID=${PUID}'
|
||||
- 'PGID=${PGID}'
|
||||
- 'TZ=${TZ}'
|
||||
- PUID=${PUID} # default user id, defined in .env
|
||||
- PGID=${PUID} # default user id, defined in .env
|
||||
- TZ=${TZ} # timezone, defined in .env
|
||||
- SERVERURL=${SERVERURL} # server public ip, auto to auto find, defined in .env
|
||||
- SERVERPORT=51820 #optional
|
||||
- PEERS=${PEERS} # number of clients to be auto configured, defined in .env
|
||||
- PEERDNS=auto #optional
|
||||
- INTERNAL_SUBNET=172.168.69.0 #optional, network for devices ips. CAN NOT be the same as your home network
|
||||
- ALLOWEDIPS=0.0.0.0/0 #optional
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/tautulli:/config'
|
||||
- ${ROOT}/MediaCenter/config/wireguard:/config # config folder
|
||||
- /lib/modules:/lib/modules
|
||||
ports:
|
||||
- 8181:8181
|
||||
restart: unless-stopped
|
||||
- 51820:51820/udp
|
||||
sysctls:
|
||||
- net.ipv4.conf.all.src_valid_mark=1
|
||||
restart: always
|
||||
|
||||
overseerr:
|
||||
image: 'sctx/overseerr:latest'
|
||||
@ -126,29 +141,4 @@ services:
|
||||
- '5055:5055'
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/overseerr/config:/app/config'
|
||||
restart: unless-stopped
|
||||
|
||||
wireguard:
|
||||
image: 'ghcr.io/linuxserver/wireguard:latest'
|
||||
container_name: wireguard
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
- SYS_MODULE
|
||||
environment:
|
||||
- 'PUID=${PUID}'
|
||||
- 'PGID=${PUID}'
|
||||
- 'TZ=${TZ}'
|
||||
- 'SERVERURL=${SERVERURL}'
|
||||
- SERVERPORT=51820
|
||||
- 'PEERS=${PEERS}'
|
||||
- 'PEERDNS=1.1.1.1'
|
||||
- INTERNAL_SUBNET=192.168.69.0
|
||||
- ALLOWEDIPS=0.0.0.0/0
|
||||
volumes:
|
||||
- '${ROOT}/MediaCenter/config/wireguard:/config'
|
||||
- '/lib/modules:/lib/modules'
|
||||
ports:
|
||||
- '51820:51820/udp'
|
||||
sysctls:
|
||||
- net.ipv4.conf.all.src_valid_mark=1
|
||||
restart: always
|
||||
restart: unless-stopped
|
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
144
img/Diagrama sem nome.drawio
Normal file
@ -0,0 +1,144 @@
|
||||
<mxfile host="app.diagrams.net" modified="2023-07-27T20:12:25.921Z" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0" etag="sDR6GJkV3mwCco5YzsBt" version="21.6.5" type="device">
|
||||
<diagram name="Página-1" id="dQLxuxd8yCNAliVXv1M2">
|
||||
<mxGraphModel dx="1434" dy="754" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
|
||||
<root>
|
||||
<mxCell id="0" />
|
||||
<mxCell id="1" parent="0" />
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-9" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;" vertex="1" parent="1">
|
||||
<mxGeometry x="10" y="30" width="780" height="600" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-10" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
|
||||
<mxGeometry x="20" y="180" width="760" height="430" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-2" target="_YTd6CJJFBm-zlTEKUg_-13">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-7" value="<h1>User Home Network<br></h1><p><br></p>" style="text;html=1;strokeColor=none;fillColor=none;spacing=5;spacingTop=-20;whiteSpace=wrap;overflow=hidden;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="20" y="565" width="300" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-11" value="<h1>Public Internet<br></h1><p><br></p>" style="text;html=1;strokeColor=none;fillColor=none;spacing=5;spacingTop=-20;whiteSpace=wrap;overflow=hidden;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="330" y="20" width="300" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-13" target="_YTd6CJJFBm-zlTEKUg_-2">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-19" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-13" target="_YTd6CJJFBm-zlTEKUg_-17">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-22" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-13" target="_YTd6CJJFBm-zlTEKUg_-20">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-31" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-13" target="_YTd6CJJFBm-zlTEKUg_-25">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-13" value="<div>OpenVPN Client</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="210" y="210" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-2" value="Torrent Indexers" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
|
||||
<mxGeometry x="60" y="60" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-18" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-17" target="_YTd6CJJFBm-zlTEKUg_-13">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-17" value="<div>Prowlarr</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="414" y="210" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-20" target="_YTd6CJJFBm-zlTEKUg_-13">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-20" value="Bittorrent Peers" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
|
||||
<mxGeometry x="210" y="60" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-24" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-17">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-25">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-33" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-32">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-38" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-36">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-45" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-42">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-23" value="<div>Sonarr/Radarr</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="414" y="320" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-28" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-25" target="_YTd6CJJFBm-zlTEKUg_-23">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-29" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-25" target="_YTd6CJJFBm-zlTEKUg_-13">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-44" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-25" target="_YTd6CJJFBm-zlTEKUg_-43">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-25" value="<div>Deluge</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="210" y="320" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-34" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-32" target="_YTd6CJJFBm-zlTEKUg_-23">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-49" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-32" target="_YTd6CJJFBm-zlTEKUg_-32">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-50" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-32" target="_YTd6CJJFBm-zlTEKUg_-48">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-32" value="<div>Overseerr</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="320" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-37" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=1;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-36" target="_YTd6CJJFBm-zlTEKUg_-23">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-40" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-36" target="_YTd6CJJFBm-zlTEKUg_-39">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-36" value="Bazarr" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="210" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-41" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-39" target="_YTd6CJJFBm-zlTEKUg_-36">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-39" value="Subtitle Providers" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="60" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-42" value="<div>Library directory</div>" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
|
||||
<mxGeometry x="410" y="430" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-46" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-43">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="410" y="460" as="targetPoint" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-43" value="<div>Download Directory</div>" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
|
||||
<mxGeometry x="210" y="430" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-51" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-48" target="_YTd6CJJFBm-zlTEKUg_-32">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-52" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-48" target="_YTd6CJJFBm-zlTEKUg_-42">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-48" value="<div>Plex Media Center<br></div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="430" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-55" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-53" target="_YTd6CJJFBm-zlTEKUg_-48">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-53" value="Tautulli" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="540" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-57" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-56" target="_YTd6CJJFBm-zlTEKUg_-10">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-56" value="<div>Wireguard</div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;" vertex="1" parent="1">
|
||||
<mxGeometry x="420" y="60" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
</root>
|
||||
</mxGraphModel>
|
||||
</diagram>
|
||||
</mxfile>
|
BIN
img/Overseerr_radarr_setup.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
img/Overseerr_settings.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
img/Overseerr_sonarr_radarr_setup.png
Normal file
After Width: | Height: | Size: 3.4 MiB |
BIN
img/PlexSetTV.png
Normal file
After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 79 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
BIN
img/RadarrRootFolder.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
img/SonarRootFolders.png
Normal file
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
147
img/architecture_diagram.drawio
Normal file
@ -0,0 +1,147 @@
|
||||
<mxfile host="app.diagrams.net" modified="2023-07-27T21:21:23.846Z" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0" etag="W9QegAMyPBmYsoshqetQ" version="21.6.5" type="device">
|
||||
<diagram name="Página-1" id="dQLxuxd8yCNAliVXv1M2">
|
||||
<mxGraphModel dx="1434" dy="754" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
|
||||
<root>
|
||||
<mxCell id="0" />
|
||||
<mxCell id="1" parent="0" />
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-9" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=8 8;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
|
||||
<mxGeometry x="10" y="30" width="780" height="600" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-58" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-10" target="_YTd6CJJFBm-zlTEKUg_-56">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-10" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
|
||||
<mxGeometry x="20" y="180" width="760" height="430" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-2" target="_YTd6CJJFBm-zlTEKUg_-13">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-7" value="<h1>User Home Network<br></h1><p><br></p>" style="text;html=1;strokeColor=none;fillColor=none;spacing=5;spacingTop=-20;whiteSpace=wrap;overflow=hidden;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="20" y="565" width="300" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-11" value="<h1>Public Internet<br></h1><p><br></p>" style="text;html=1;strokeColor=none;fillColor=none;spacing=5;spacingTop=-20;whiteSpace=wrap;overflow=hidden;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="330" y="20" width="300" height="40" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-13" target="_YTd6CJJFBm-zlTEKUg_-2">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-19" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-13" target="_YTd6CJJFBm-zlTEKUg_-17">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-22" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-13" target="_YTd6CJJFBm-zlTEKUg_-20">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-31" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-13" target="_YTd6CJJFBm-zlTEKUg_-25">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-13" value="<div>OpenVPN Client</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="210" y="210" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-2" value="Torrent Indexers" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
|
||||
<mxGeometry x="60" y="60" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-18" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-17" target="_YTd6CJJFBm-zlTEKUg_-13">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-17" value="<div>Prowlarr</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="414" y="210" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-20" target="_YTd6CJJFBm-zlTEKUg_-13">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-20" value="Bittorrent Peers" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
|
||||
<mxGeometry x="210" y="60" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-24" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-17">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-25">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-33" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-32">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-38" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-36">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-45" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-23" target="_YTd6CJJFBm-zlTEKUg_-42">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-23" value="<div>Sonarr/Radarr</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="414" y="320" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-28" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-25" target="_YTd6CJJFBm-zlTEKUg_-23">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-29" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-25" target="_YTd6CJJFBm-zlTEKUg_-13">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-44" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-25" target="_YTd6CJJFBm-zlTEKUg_-43">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-25" value="<div>Deluge</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="210" y="320" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-34" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-32" target="_YTd6CJJFBm-zlTEKUg_-23">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-49" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-32" target="_YTd6CJJFBm-zlTEKUg_-32">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-50" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-32" target="_YTd6CJJFBm-zlTEKUg_-48">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-32" value="<div>Overseerr</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="320" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-37" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=1;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-36" target="_YTd6CJJFBm-zlTEKUg_-23">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-40" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-36" target="_YTd6CJJFBm-zlTEKUg_-39">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-36" value="Bazarr" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="210" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-41" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-39" target="_YTd6CJJFBm-zlTEKUg_-36">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-39" value="Subtitle Providers" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="60" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-42" value="<div>Library directory</div>" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
|
||||
<mxGeometry x="410" y="430" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-46" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-43">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="410" y="460" as="targetPoint" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-43" value="<div>Download Directory</div>" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
|
||||
<mxGeometry x="210" y="430" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-51" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-48" target="_YTd6CJJFBm-zlTEKUg_-32">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-52" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-48" target="_YTd6CJJFBm-zlTEKUg_-42">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-48" value="<div>Plex Media Center<br></div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="430" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-55" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-53" target="_YTd6CJJFBm-zlTEKUg_-48">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-53" value="Tautulli" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="620" y="540" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-57" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="_YTd6CJJFBm-zlTEKUg_-56" target="_YTd6CJJFBm-zlTEKUg_-10">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="_YTd6CJJFBm-zlTEKUg_-56" value="<div>Wireguard</div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;" vertex="1" parent="1">
|
||||
<mxGeometry x="420" y="60" width="120" height="60" as="geometry" />
|
||||
</mxCell>
|
||||
</root>
|
||||
</mxGraphModel>
|
||||
</diagram>
|
||||
</mxfile>
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
BIN
img/bazarrFinishedSetup.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
img/bazarrLanguage.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
img/bazarrLanguageDefault.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
img/bazarrLanguageProfile.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
img/bazarrProviderSetup.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
img/bazarrSonarrConfiguration.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
img/bazarr_start.png
Normal file
After Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
BIN
img/overseerr_startpage.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 132 KiB After Width: | Height: | Size: 132 KiB |
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
BIN
img/testingDownload.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
img/testingPlexMovie.png
Normal file
After Width: | Height: | Size: 754 KiB |
BIN
img/testingRadarr.png
Normal file
After Width: | Height: | Size: 173 KiB |
BIN
img/testingRadarrMovieAdded.png
Normal file
After Width: | Height: | Size: 146 KiB |
Before Width: | Height: | Size: 195 KiB After Width: | Height: | Size: 195 KiB |