Difference between revisions of "Package:Rutorrent"

From Funtoo
Jump to navigation Jump to search
m
m
Line 4: Line 4:
|Homepage=http://code.google.com/p/rutorrent/
|Homepage=http://code.google.com/p/rutorrent/
}}
}}
{{warning|this page is untested. some things may not be right}}


rutorrent is a front end to {{package|net-p2p/rtorrent}} and is designed to look like utorrent =D
rutorrent is a front end to {{package|net-p2p/rtorrent}} and is designed to look like utorrent =D
Line 31: Line 30:
were going to configure for nginx.
were going to configure for nginx.


 
=== optional security lock down stuff ===
{{warning|possibly broken, untested}}
Edit the open_basedir in
Edit the open_basedir in
/etc/php/fpm-php5.5/php.ini
/etc/php/fpm-php5.5/php.ini
Line 61: Line 61:


http://localhost/rutorrent
http://localhost/rutorrent
{{note|tested without rtorrent running, and without editing the php.ini, web app runs fine.}}





Revision as of 06:25, March 8, 2015

Rutorrent

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.


rutorrent is a front end to net-p2p/rtorrent and is designed to look like utorrent =D

root # emerge www-apps/rutorrent

prereqs

  • Install your web server www-servers/nginx, and get dev-lang/php with the fpm use flag running first.
  • you must turn on scgi_pass within rtorrents.

configuration

first figure out what php you're using

root #eselect php list fpm
[1]   php5.5 *
root # eselect php list cgi
[1]   php5.5 *
root # eselect php list apache2
[1]   php5.5 *
root # eselect php list cli
[1]   php5.5 *

edit the respective php.ini

were going to configure for nginx.

optional security lock down stuff

   Warning

possibly broken, untested

Edit the open_basedir in /etc/php/fpm-php5.5/php.ini

   /etc/php/fpm-php5.5/php.ini - php basedir
open_basedir = /var/www/localhost/htdocs/rutorrent/conf:/var/www/localhost/htdocs/rutorrent/php:/var/www/localhost/htdocs/rutorrent/

nginx config

   /etc/nginx/sites-available/localhost - nginx configuration
server {
	listen 127.0.0.1:80;
	server_name localhost;

           location /rutorrent {
               include scgi_params;
               scgi_pass localhost:5000;
           }
}

then start nginx

root # /etc/init.d/nginx restart

point browser to

http://127.0.0.1/rutorrent

or

http://localhost/rutorrent

   Note

tested without rtorrent running, and without editing the php.ini, web app runs fine.