Difference between pages "Requested Documents" and "Package:Rutorrent"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m
 
m (ill clean this up with real syntax after a smoke.)
 
Line 1: Line 1:
== & Requested Document Updates ==
{{Ebuild
|Summary=ruTorrent is a front-end for the popular Bittorrent client rTorrent
|CatPkg=www-apps/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


* {{Package|x11-wm/wmfs}}
{{console|body=###i## emerge www-apps/rutorrent}}
* reverse dependency resolution... not once emerge pkg --tree is said or equery depends pkg on the entire wiki?
 
* more email stuff....
===configuration===
* dkim/spf dns configurations probably under bind, not sure if dnsmasq supports that stuff.....
were going to configure nginx to serve this.
* dovecot http://www.dovecot.org/documentation.html
 
* auto logins (for startx, lxdm, and others if they're possible)
first figure out what php you're using
* lxqt
 
* xdm (note that xorg / x11 should work before doing this)
{{console|body=###i##eselect php list fpm
* lightdm (note that a greeter is necessary & give greeter options)
[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 *
}}
 
following https://wiki.archlinux.org/index.php/RuTorrent#Nginx
 
Edit the open_basedir value in /etc/php/php.ini to include: only our php ini is located elsewhere.
/etc/php/fpm-php5.5/php.ini
 
/etc/webapps/rutorrent/conf/:/usr/share/webapps/rutorrent/php/:/usr/share/webapps/rutorrent/
 
ours is located in /var/www/localhost/htdocs/rutorrent
 
 
          location /RPC2 {
              include scgi_params;
              scgi_pass localhost:5000;
          }
 
instead for us
 
file:
/etc/nginx/sites-available/localhost
 
server {
listen 127.0.0.1:80;
server_name localhost;
 
          location /rutorrent {
              include scgi_params;
              scgi_pass localhost:5000;
          }
}
 
 
then start nginx
{{console|body=###i## /etc/init.d/nginx restart}}
 
point browser to
 
127.0.0.1/rutorrent
 
if anything is missing its turning on the scgi_pass within rtorrents configuration file.
 
{{PageNeedsUpdates}}
{{EbuildFooter}}

Revision as of 02:32, 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

configuration

were going to configure nginx to serve this.

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 *

following https://wiki.archlinux.org/index.php/RuTorrent#Nginx

Edit the open_basedir value in /etc/php/php.ini to include: only our php ini is located elsewhere. /etc/php/fpm-php5.5/php.ini

/etc/webapps/rutorrent/conf/:/usr/share/webapps/rutorrent/php/:/usr/share/webapps/rutorrent/

ours is located in /var/www/localhost/htdocs/rutorrent


          location /RPC2 {
              include scgi_params;
              scgi_pass localhost:5000;
          }

instead for us

file: /etc/nginx/sites-available/localhost

server { 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

if anything is missing its turning on the scgi_pass within rtorrents configuration file.