Difference between pages "Funtoo:Metro/Recipes" and "Package:Rutorrent"

From Funtoo
< Funtoo:Metro(Difference between pages)
Jump to navigation Jump to search
 
m
 
Line 1: Line 1:
== How do I build an OpenVZ template? ==
{{Ebuild
|Summary=ruTorrent is a front-end for the popular Bittorrent client rTorrent
|CatPkg=www-apps/rutorrent
|Homepage=http://code.google.com/p/rutorrent/
}}


<pre>
rutorrent is a front end to {{package|net-p2p/rtorrent}} and is designed to look like utorrent =D
# /root/git/metro/scripts/ezbuild.sh funtoo-current core2_64 openvz
</pre>


== How do I build a VServer template? ==
{{console|body=###i## emerge www-apps/rutorrent}}


The latest git version of metro supports vserver natively:
===prereqs===
*Install your web server {{package|www-servers/nginx}}, and get {{package|dev-lang/php}} with the fpm use flag running first.
*you must turn on scgi_pass in the {{package|net-p2p/rtorrent}} config.


<pre>
===configuration===
# /root/git/metro/scripts/ezbuild.sh funtoo-current core2_64 vserver
==== optional security lock down stuff ====
</pre>
{{warning|possibly broken, untested}}


== How do I build an Linux Containers (LXC) template? ==
first figure out what php you're using


The latest git version of metro supports LXC natively:
{{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 *
}}


<pre>
edit the respective php.ini
# /root/git/metro/scripts/ezbuild.sh funtoo-current core2_64 lxc
</pre>


== How do I build stuff, plus an OpenVZ template? ==
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/
}}


Sometimes it's handy to be able to build a multi-target like "full" (the default stage1/2/3 build) or "freshen" ''plus'' an additional single target such as "openvz", "lxc" or "vserver". The advantage of using this approach is that the second target will only build if the first one completes successfully. Metro now accepts a "+(single-target)" to specify one additional extra target:
=== 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;


<pre>
        location ~ \.php$ {
# /root/git/metro/scripts/ezbuild.sh funtoo-current corei7 full+openvz
                fastcgi_pass 127.0.0.1:9000;
</pre>
include fastcgi.conf;
                #fastcgi_pass unix:/var/run/php5-fpm.sock;
        }


This comes in handy for cron jobs.
          location /rutorrent {
              include scgi_params;
              scgi_pass localhost:5000;
          }
}
}}


== How do I build more than one stage a day? ==
restart nginx
{{console|body=###i## /etc/init.d/nginx restart}}


To build more than one stage a day, use the full syntax to <tt>ezbuild.sh</tt> as shown below, and specify the suffix of your preference to the datestamp. From Metro's perspective, the datestamp is just a string so anything will work -- "[today's date]-1", "test", "test-3", etc. will all be accepted by Metro. Metro will record the last stage3 built and use it as a seed stage.
point your browser to


<pre>
http://127.0.0.1/rutorrent
# /root/git/metro/scripts/ezbuild.sh funtoo-current generic_64 full 20111231-1
</pre>


[[Category:Metro]]
or
 
http://localhost/rutorrent
 
{{PageNeedsUpdates}}
{{EbuildFooter}}

Revision as of 06:51, 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

configuration

optional security lock down stuff

   Warning

possibly broken, untested

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

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