注意:
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Package:Rutorrent"
Jump to navigation
Jump to search
Threesixes (talk | contribs) m |
Spectromas (talk | contribs) |
||
Line 4: | Line 4: | ||
|Homepage=http://code.google.com/p/rutorrent/ | |Homepage=http://code.google.com/p/rutorrent/ | ||
}} | }} | ||
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 | ||
{{console|body=###i## emerge www-apps/rutorrent}} | {{console|body=###i## emerge www-apps/rutorrent}} | ||
=== | ===Prerequisites=== | ||
*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 | *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. | *you must be running rtorrent, or rtorrentd. | ||
=== | ===Configuration=== | ||
==== nginx config==== | ==== 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= | ||
Line 50: | Line 49: | ||
http://localhost/rutorrent | http://localhost/rutorrent | ||
===Troubleshooting=== | |||
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: | |||
{{file|name=/etc/php/fpm-php5.5/php-fpm.conf |lang=|desc=|body= | |||
listen.owner = www-data | |||
listen.group = www-data | |||
listen.mode = 0666 | |||
}} | |||
The just restart php-fpm: | |||
{{console|body=###i## /etc/init.d/php-fpm restart}} | |||
{{PageNeedsUpdates}} | {{PageNeedsUpdates}} | ||
{{EbuildFooter}} | {{EbuildFooter}} |
Revision as of 20:24, 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
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 net-p2p/rtorrent config.
- you must be running rtorrent, or rtorrentd.
Configuration
nginx config
/etc/nginx/sites-available/localhost
- nginx configurationserver { 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
or
Troubleshooting
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