Difference between revisions of "Package:Rutorrent"

From Funtoo
Jump to navigation Jump to search
m (get closer to fixed)
m (fix link to rtorrent configuration setting)
 
(10 intermediate revisions by 2 users not shown)
Line 8: Line 8:
{{console|body=###i## emerge www-apps/rutorrent}}
{{console|body=###i## emerge www-apps/rutorrent}}


===prereqs===
===Prerequisites===
you must turn on scgi_pass within rtorrents.
*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:Rtorrent#xml_rpc | rtorrent]] config.
*you must be running rtorrent, or rtorrentd.


===configuration===
===Configuration===
first figure out what php you're using
==== 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;


{{console|body=###i##eselect php list fpm
        location ~ \.php$ {
[1]  php5.5 *
                fastcgi_pass 127.0.0.1:9000;
###i## eselect php list cgi
include fastcgi.conf;
[1]  php5.5 *
                #fastcgi_pass unix:/var/run/php5-fpm.sock;
###i## eselect php list apache2
        }
[1]  php5.5 *
 
###i## eselect php list cli
          location /rutorrent {
[1]  php5.5 *
              include scgi_params;
              scgi_pass localhost:5000;
          }
}
}}
}}


edit the respective php.ini
Restart nginx:
{{console|body=###i## /etc/init.d/nginx restart}}


were going to configure for nginx.
Point your browser to


http://127.0.0.1/rutorrent


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


we need to build ours from hints from arch:
http://localhost/rutorrent
/etc/webapps/rutorrent/conf/:/usr/share/webapps/rutorrent/php/:/usr/share/webapps/rutorrent/


===Troubleshooting===


for us:
====Errors====
our web interface is located in /var/www/localhost/htdocs/rutorrent
If you are able to open the rutorrent web interface but receive errors such as '''Bad response from server: (502 [error,getplugins])''' then edit and change/uncomment the following:


/usr/share/webapps/rutorrent/
{{file|name=/etc/php/fpm-php5.5/php-fpm.conf |lang=|desc=|body=
listen.owner = www-data
listen.group = www-data
listen.mode = 0666
}}


/var/www/localhost/htdocs/rutorrent/php
The just restart php-fpm:
/usr/share/webapps/rutorrent/3.4-r1/htdocs/php


{{console|body=###i## /etc/init.d/php-fpm restart}}


====Clock shows the incorrect time====


========== nginx stuff==========
If rutorrent's clock displays the incorrect time/timezone then it can be changed.  
{{file|name=/etc/nginx/sites-available/localhost|lang=|desc=nginx configuration|body=
server {
listen 127.0.0.1:80;
server_name localhost;


          location /rutorrent {
{{file|name=/etc/php/fpm-php5.5/php.ini |lang=|desc=|body=
              include scgi_params;
date.timezone = "Europe/Athens"
              scgi_pass localhost:5000;
          }
}
}}
}}


then start nginx
A full list of supported timezones can be found at http://php.net/manual/en/timezones.php
{{console|body=###i## /etc/init.d/nginx restart}}
 
point browser to
 
127.0.0.1/rutorrent


==== 502 ====
502 Bad Gateway is caused by nginx being started and php-fpm not being started.




{{PageNeedsUpdates}}
{{PageNeedsUpdates}}
{{EbuildFooter}}
{{EbuildFooter}}

Latest revision as of 21:42, March 10, 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

Prerequisites

  • 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 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

Troubleshooting

Errors

If you are able to open the rutorrent web interface but receive errors such as Bad response from server: (502 [error,getplugins]) then edit and change/uncomment the following:

   /etc/php/fpm-php5.5/php-fpm.conf
listen.owner = www-data
listen.group = www-data
listen.mode = 0666

The just restart php-fpm:

root # /etc/init.d/php-fpm restart

Clock shows the incorrect time

If rutorrent's clock displays the incorrect time/timezone then it can be changed.

   /etc/php/fpm-php5.5/php.ini
date.timezone = "Europe/Athens"

A full list of supported timezones can be found at http://php.net/manual/en/timezones.php

502

502 Bad Gateway is caused by nginx being started and php-fpm not being started.