mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2024-11-14 05:20:03 +08:00
Merge pull request #27 from bakerboy448/patch-3
fix yml formatting of sample config & add more examples
This commit is contained in:
commit
c8b6183dce
1 changed files with 25 additions and 21 deletions
|
@ -1,40 +1,43 @@
|
|||
# qBittorrent parameters
|
||||
qbt:
|
||||
host: 'localhost:8080'
|
||||
user: 'username'
|
||||
pass: 'password'
|
||||
host: "localhost:8080"
|
||||
user: "username"
|
||||
pass: "password"
|
||||
|
||||
directory:
|
||||
# Do not remove these
|
||||
# Cross-seed var: </your/path/here/> #Output directory of cross-seed
|
||||
# Cross-seed var: </your/path/here/> #Output directory of cross-seed
|
||||
# root_dir var: </your/path/here/> #Root downloads directory used to check for orphaned files
|
||||
# <OPTIONAL> remote_dir var: </your/path/here/> # Path of docker host mapping of root_dir
|
||||
cross_seed: '/your/path/here/'
|
||||
root_dir: '/data/torrents/'
|
||||
remote_dir: '/mnt/user/data/torrents/'
|
||||
cross_seed: "/your/path/here/"
|
||||
root_dir: "/data/torrents/"
|
||||
remote_dir: "/mnt/user/data/torrents/"
|
||||
|
||||
# Category/Pathing Parameters
|
||||
cat:
|
||||
# <Category Name> : <save_path> #Path of your save directory. Can be a keyword or full path
|
||||
movies: '/data/torrents/Movies'
|
||||
tv: 'TV'
|
||||
movies: "/data/torrents/Movies"
|
||||
tv: "TV"
|
||||
|
||||
# Tag Parameters
|
||||
tags:
|
||||
# <Tracker URL Keyword>: <Tag Name>
|
||||
beyond-hd: Beyond-HD
|
||||
privatehd: PrivateHD
|
||||
animebytes.tv: AnimeBytes
|
||||
avistaz: Avistaz
|
||||
landof.tv: BroadcasTheNet
|
||||
passthepopcorn: PassThePopcorn
|
||||
torrentleech: TorrentLeech
|
||||
tleechreload: TorrentLeech
|
||||
gazellegames: GGn
|
||||
beyond-hd: Beyond-HD
|
||||
blutopia: Blutopia
|
||||
hdts: HDTorrents
|
||||
tv-vault: TV-Vault
|
||||
cartoonchaos: CartoonChaos
|
||||
digitalcore: DigitalCore
|
||||
gazellegames: GGn
|
||||
hdts: HDTorrents
|
||||
landof.tv: BroadcasTheNet
|
||||
myanonamouse: MaM
|
||||
passthepopcorn: PassThePopcorn
|
||||
privatehd: PrivateHD
|
||||
tleechreload: TorrentLeech
|
||||
torrentdb: TorrentDB
|
||||
torrentleech: TorrentLeech
|
||||
tv-vault: TV-Vault
|
||||
|
||||
#Tag Movies/Series that are not hard linked
|
||||
nohardlinks:
|
||||
|
@ -45,15 +48,16 @@ nohardlinks:
|
|||
exclude_tags:
|
||||
- Beyond-HD
|
||||
- AnimeBytes
|
||||
- MaM
|
||||
#<OPTIONAL> cleanup var: WARNING!! Setting this as true Will remove and delete contents of any torrents that are in paused state and has the NoHL tag
|
||||
cleanup: false
|
||||
#<OPTIONAL> max_ratio var: Will set the torrent Maximum share ratio until torrent is stopped from seeding/uploading
|
||||
max_ratio: 4.0
|
||||
#<OPTIONAL> seeding time var: Will set the torrent Maximum seeding time (min) until torrent is stopped from seeding
|
||||
max_seeding_time: 86400
|
||||
|
||||
|
||||
#Can have additional categories set with separate ratio/seeding times defined.
|
||||
series-completed:
|
||||
series-completed:
|
||||
#<OPTIONAL> exclude_tags var: Will exclude the following tags when searching through the category.
|
||||
exclude_tags:
|
||||
- Beyond-HD
|
||||
|
@ -63,4 +67,4 @@ nohardlinks:
|
|||
#<OPTIONAL> max_ratio var: Will set the torrent Maximum share ratio until torrent is stopped from seeding/uploading
|
||||
max_ratio: 4.0
|
||||
#<OPTIONAL> seeding time var: Will set the torrent Maximum seeding time (min) until torrent is stopped from seeding
|
||||
max_seeding_time: 86400
|
||||
max_seeding_time: 86400
|
||||
|
|
Loading…
Reference in a new issue