Flood: Ratio grouping based on torrent label

Created on 17 Nov 2018  路  7Comments  路  Source: Flood-UI/flood

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

feature help wanted

Most helpful comment

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.

All 7 comments

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!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

geopsllc picture geopsllc  路  5Comments

runaroundhome picture runaroundhome  路  6Comments

rkkoszewski picture rkkoszewski  路  6Comments

noraj picture noraj  路  3Comments

noraj picture noraj  路  4Comments