Difference between revisions of "Package:Rutorrent"

From Funtoo
Jump to navigation Jump to search
m
m
Line 10: Line 10:


===prereqs===
===prereqs===
*Install your web server {{package|www-servers/nginx}}, and get {{package|dev-lang/php}} with the fpm use flag running first.
*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
*you must turn on scgi_pass in the {{package|net-p2p/rtorrent}} config.
*you must turn on scgi_pass in the {{package|net-p2p/rtorrent}} config.
*you must be running rtorrent, or rtorrentd.


===configuration===
===configuration===
==== optional security lock down stuff ====
==== nginx config====
{{warning|possibly broken, untested}}
 
first figure out what php you're using
 
{{console|body=###i##eselect php list fpm
[1]  php5.5 *
###i## eselect php list cgi
[1]  php5.5 *
###i## eselect php list apache2
[1]  php5.5 *
###i## eselect php list cli
[1]  php5.5 *
}}
 
edit the respective php.ini
 
Edit the open_basedir in
/etc/php/fpm-php5.5/php.ini
{{file|name=/etc/php/fpm-php5.5/php.ini|lang=|desc=php basedir|body=
open_basedir = /var/www/localhost/htdocs/rutorrent/conf:/var/www/localhost/htdocs/rutorrent/php:/var/www/localhost/htdocs/rutorrent/
}}
 
=== nginx config===
{{file|name=/etc/nginx/sites-available/localhost|lang=|desc=nginx configuration|body=
{{file|name=/etc/nginx/sites-available/localhost|lang=|desc=nginx configuration|body=
server {
server {
Line 61: Line 39:
}}
}}


restart nginx
Restart nginx:
{{console|body=###i## /etc/init.d/nginx restart}}
{{console|body=###i## /etc/init.d/nginx restart}}


point your browser to
Point your browser to


http://127.0.0.1/rutorrent
http://127.0.0.1/rutorrent

Revision as of 07:28, 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. nginx needs to be built with nginx_modules_http_scgi
  • you must turn on scgi_pass in the net-p2p/rtorrent config.
  • you must be running rtorrent, or rtorrentd.

configuration

nginx config

   /etc/nginx/sites-available/localhost - nginx configuration
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:

root # /etc/init.d/nginx restart

Point your browser to

http://127.0.0.1/rutorrent

or

http://localhost/rutorrent