rtorrent+rutorrent plugin for freenas 9.1

Status
Not open for further replies.

Henning

Cadet
Joined
Aug 18, 2013
Messages
1
Hello.

Are there any users here that might have the skills to create a rtorrent/rutorrent plugin
inkl autodl irssi

that would be great.

rtorrent has so much more features than transmission.
and alot of transmission versions are banned from torrent sites.
 

s4zando

Cadet
Joined
Jun 1, 2013
Messages
5
I've made a request and offered to provide technical documentation and testing assistance for uBittorrent, tho as of yet, no one (to the best of my knowledge), has started this or taken me up on my offer(s).
 

dansband

Cadet
Joined
Aug 24, 2013
Messages
5
Got it to work! Basically I just followed that guide http://blog.bobbyallen.me/2013/01/05/install-nginx-mysql-php-apc-and-memcached-on-freebsd-9-0/ and tweaked the nginx.conf because there is no index.php in rutorrent maps. I'll do a guide and try to reproduce everything soon.

nginx.conf
Code:
master_process          on;
worker_processes        4; # Ideally this should match the number of cores your server has!
worker_cpu_affinity    0001 0010 0100 1000;
#worker_cpu_affinity    0001 0010;
worker_priority        0;
worker_rlimit_nofile    8192;
 
error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
 
#pid        logs/nginx.pid;
 
events {
    multi_accept        off;
    worker_connections  1024;
    use kqueue;
}
 
 
http {
    include mime.types;
    default_type application/octet-stream;
 
    keepalive_timeout  0;
 
    ## General Options
    charset                  utf-8;
    source_charset            utf-8;
    ignore_invalid_headers    on;
    server_name_in_redirect  off;
 
    ## TCP options
    tcp_nodelay off;
    tcp_nopush  on;
 
    server {
        listen            80;
        server_name      192.168.1.19;
        root              /usr/local/www/rutorrent/;
        index            index.php index.html index.htm;
 
        location / {
            try_files  $uri $uri/ @handler;
            expires    30d;
        }
 
        location @handler {
            rewrite ^ /index.php?/$request_uri;
        }
 
        location ~ \.php$ {
            fastcgi_pass        unix:/var/run/php-fpm.sock;
            fastcgi_index      index.php;
#            fastcgi_param      SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME /usr/local/www/rutorrent/$fastcgi_script_name;
            fastcgi_param      FUEL_ENV production;
            include            fastcgi_params;
            allow  192.168.1.0/24;
            deny all;
        }
 
        location ~* ^/(modules|application|system) {
            return 403;
        }
 
        error_page 404                  /index.php;
 
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
            deny  all;
 
        }
    }
 
}
 

.rtorrent.rc
Code:
scgi_local = /tmp/rpc.socket
schedule = chmod,0,0,"execute=chmod,777,/tmp/rpc.socket"


I don't know anything about security so don't blame me if something goes wrong!
 
Status
Not open for further replies.
Top