flood
flood copied to clipboard
Ratio grouping based on torrent label
Type: Feature Request
Resources distribution
Summary
The seedbox will be able to automatically stop or keep seeding torrent(s) on specific ratio setting based on the label
Idea of implementation
Rutorrent has the same feature
Why based on labels ?
First of all thank you for your fast reply! User will be able to choose which torrent needs to be seeded and for how long (Group Ratio). I wrote by label because of interaction with other programs like Sonnar or Couchpotato in which you have the ability to pre-define the label of torrent that they will add later to Flood. It will help to make more things automatically instead of stopping the torrent after you hit the "goal".
If only we could use Sonarr with flood. :(
Well, actually you can! I can post a tutorial when I'll get home if you want. It's basically an ngix configuration i'm using that opens rtorrent to apps like Sonarr, Couchpotato etc.
Please do!
There you go! After you have successfully installed Flood, Ngix and Openssl:
Create user file using openssl
sudo sh -c "echo -n 'yourusername:' >> /etc/nginx/.htpasswd"
Add password to that user
sudo sh -c "openssl passwd -apr1 >> /etc/nginx/.htpasswd"
Create a configuration file at Nginx folder
sudo touch /etc/nginx/sites-enabled/server.rpc.conf
sudo nano /etc/nginx/sites-enabled/server.rpc.conf
Add the following lines inside that file
location /RPC2 {
auth_basic "Restricted Content";
auth_basic_user_file /etc/nginx/.htpasswd;
scgi_pass 127.0.0.1:5000;
include scgi_params;
}
After that you are ready setup sonarr or whichever app you like to work with flood.
Well that was simple, thanks dude!