The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Package:Rutorrent"
Threesixes (talk | contribs) m (ill clean this up with real syntax after a smoke.) |
Threesixes (talk | contribs) m (get closer to fixed) |
||
Line 7: | Line 7: | ||
{{console|body=###i## emerge www-apps/rutorrent}} | {{console|body=###i## emerge www-apps/rutorrent}} | ||
===prereqs=== | |||
you must turn on scgi_pass within rtorrents. | |||
===configuration=== | ===configuration=== | ||
first figure out what php you're using | first figure out what php you're using | ||
Line 23: | Line 24: | ||
}} | }} | ||
edit the respective php.ini | |||
were going to configure for nginx. | |||
Edit the open_basedir | Edit the open_basedir in | ||
/etc/php/fpm-php5.5/php.ini | /etc/php/fpm-php5.5/php.ini | ||
we need to build ours from hints from arch: | |||
/etc/webapps/rutorrent/conf/:/usr/share/webapps/rutorrent/php/:/usr/share/webapps/rutorrent/ | /etc/webapps/rutorrent/conf/:/usr/share/webapps/rutorrent/php/:/usr/share/webapps/rutorrent/ | ||
for us: | |||
our web interface is located in /var/www/localhost/htdocs/rutorrent | |||
/usr/share/webapps/rutorrent/ | |||
/var/www/localhost/htdocs/rutorrent/php | |||
/usr/share/webapps/rutorrent/3.4-r1/htdocs/php | |||
========== nginx stuff========== | |||
{{file|name=/etc/nginx/sites-available/localhost|lang=|desc=nginx configuration|body= | |||
server { | server { | ||
listen 127.0.0.1:80; | listen 127.0.0.1:80; | ||
Line 52: | Line 57: | ||
} | } | ||
} | } | ||
}} | |||
then start nginx | then start nginx | ||
Line 61: | Line 66: | ||
127.0.0.1/rutorrent | 127.0.0.1/rutorrent | ||
{{PageNeedsUpdates}} | {{PageNeedsUpdates}} | ||
{{EbuildFooter}} | {{EbuildFooter}} |
Revision as of 03:31, March 8, 2015
Rutorrent
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
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.
Edit the open_basedir in
/etc/php/fpm-php5.5/php.ini
we need to build ours from hints from arch: /etc/webapps/rutorrent/conf/:/usr/share/webapps/rutorrent/php/:/usr/share/webapps/rutorrent/
for us:
our web interface is located in /var/www/localhost/htdocs/rutorrent
/usr/share/webapps/rutorrent/
/var/www/localhost/htdocs/rutorrent/php /usr/share/webapps/rutorrent/3.4-r1/htdocs/php
==== nginx stuff====
/etc/nginx/sites-available/localhost
- nginx configurationserver { 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
127.0.0.1/rutorrent