qbittorrent

> updating wiki
This commit is contained in:
Eugene Amos 2023-11-29 00:36:50 -08:00
parent 550325abf4
commit 65714a45d8
4 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@
<summary>Table of Contents</summary> <summary>Table of Contents</summary>
<ol> <ol>
<li><a href="#01-pip">PIP</a></li> <li><a href="#01-pip">PIP</a></li>
<li><a href="#02-folder-structure">Getting Started</a></li> <li><a href="#02-folder-structure">Folder Structure</a></li>
<li><a href="#03-script">Script</a></li> <li><a href="#03-script">Script</a></li>
<li><a href="#04-run">Run</a></li> <li><a href="#04-run">Run</a></li>
<li><a href="#05-testing">Testing</a></li> <li><a href="#05-testing">Testing</a></li>

View File

@ -28,13 +28,13 @@ When the script is called it will do the following:
- If both or either are **FALSE** then the script will move to **#3**. - If both or either are **FALSE** then the script will move to **#3**.
> Note: When you **right click** on a **category** in qbittorrent you can edit the **save path** location. ></br>**Note:** &nbsp;When you **right click** on a **category** in qbittorrent you can edit the **save path** location.</br>&nbsp;
3. Next the script will again check for **"1080p"** or **"2160p"** *AND* **"YTS.MX"** in the name. 3. Next the script will again check for **"1080p"** or **"2160p"** *AND* **"YTS.MX"** in the name.
- If **TRUE** then the added torrent is a movie and the category will change to `category_1080_movies`. - If **TRUE** then the added torrent is a movie and the category will change to `category_1080_movies`.
> Note: **95%** of the time I only add movies from **YTS.MX**. This can be changed to any movie identifier needed. ></br>**Note:** &nbsp;*95%* of the time I only add movies from **YTS.MX**. This can be changed to any movie identifier needed.</br>&nbsp;
</details> </details>
<br /> <br />

View File

@ -20,7 +20,7 @@ qbitt_username = '<USERNAME>'
qbitt_password = '<PASSWORD>' qbitt_password = '<PASSWORD>'
# qbittorrent webui address. # qbittorrent webui address.
#url = 'http://192.168.1.59:8080' #url = 'http://192.168.1.55:8080'
url = 'http://<SERVER IP ADDRESS>:<PORT>' url = 'http://<SERVER IP ADDRESS>:<PORT>'
# The categories to use for matching torrents. Change as needed. # The categories to use for matching torrents. Change as needed.

View File

@ -46,7 +46,7 @@ services:
- WEBUI_PORT=8124 - WEBUI_PORT=8124
healthcheck: healthcheck:
# change this ip addrss to match your server. Mine is below as an example # change this ip addrss to match your server. Mine is below as an example
#test: curl -sf http://192.168.1.59:8124 || exit 1 #test: curl -sf http://192.168.1.55:8124 || exit 1
test: curl -sf http://<SERVER IP ADDRESS>:8124 || exit 1 test: curl -sf http://<SERVER IP ADDRESS>:8124 || exit 1
interval: 60s interval: 60s
timeout: 30s timeout: 30s