Difference between pages "Package:Rutorrent" and "User:Ivanvcouso"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m
 
 
Line 1: Line 1:
{{Ebuild
{{Person
|Summary=ruTorrent is a front-end for the popular Bittorrent client rTorrent
|Geoloc=40.4167754, -3.7037902
|CatPkg=www-apps/rutorrent
|Location name=Madrid, Spain
|Homepage=http://code.google.com/p/rutorrent/
|Blogs=
}}
}}
Hi! I'm a Python & Java web developer from Spain! Also interested in Operating Systems, Artificial Intelligence and Software Craftmanship.


rutorrent is a front end to {{package|net-p2p/rtorrent}} and is designed to look like utorrent =D
Devices:


{{console|body=###i## emerge www-apps/rutorrent}}
Asha:
Macbook Pro 6.1 - Core i7 M 620 - 4 GB RAM - 500 GB HDD
EFI Boot with Grub2, only funtoo in a luks/lvm.


===prereqs===
Freya:
*Install your web server {{package|www-servers/nginx}}, and get {{package|dev-lang/php}} with the fpm use flag running first.  nginx needs to be built with nginx_modules_http_scgi
EeePc 1008HA - Atom N720 - 1 GB RAM
*you must turn on scgi_pass in the {{package|net-p2p/rtorrent}} config.
/dev/sda1 boot
*you must be running rtorrent, or rtorrentd.
/dev/sda2 root
 
/dev/sda3 fat32 (EeePc Boot Booster)
===configuration===
==== nginx config====
{{file|name=/etc/nginx/sites-available/localhost|lang=|desc=nginx configuration|body=
server {
listen 127.0.0.1:80;
server_name localhost;
access_log /var/log/nginx/localhost.access_log main;
error_log /var/log/nginx/localhost.error_log info;
root /var/www/localhost/htdocs;
index index.php index.cgi index.htm index.html;
autoindex on;
 
        location ~ \.php$ {
                fastcgi_pass 127.0.0.1:9000;
include fastcgi.conf;
                #fastcgi_pass unix:/var/run/php5-fpm.sock;
        }
 
          location /rutorrent {
              include scgi_params;
              scgi_pass localhost:5000;
          }
}
}}
 
Restart nginx:
{{console|body=###i## /etc/init.d/nginx restart}}
 
Point your browser to
 
http://127.0.0.1/rutorrent
 
or
 
http://localhost/rutorrent
 
{{PageNeedsUpdates}}
{{EbuildFooter}}

Revision as of 23:23, March 26, 2015


Location

Loading map...
Madrid, Spain

Hi! I'm a Python & Java web developer from Spain! Also interested in Operating Systems, Artificial Intelligence and Software Craftmanship.

Devices:

Asha: Macbook Pro 6.1 - Core i7 M 620 - 4 GB RAM - 500 GB HDD EFI Boot with Grub2, only funtoo in a luks/lvm.

Freya: EeePc 1008HA - Atom N720 - 1 GB RAM /dev/sda1 boot /dev/sda2 root /dev/sda3 fat32 (EeePc Boot Booster)