[SOLVED] rutorrent doesn't work with nginx

saroos1

Member
May 25, 2018
718
0
16
I have installed rtorrent 0.8.9, rutorrent 3.3, nginx 1.0.9, php-fpm on archlinux. These are my settings:

.rtorrent.rc
Code:
scgi_port = 127.0.0.1:5000

nginx.conf
Code:
location /RPC2 {
include scgi_params;
scgi_pass 127.0.0.1:5000;
}

rutorrent/conf/config.php
Code:
$scgi_port = 5000;
$scgi_host = "127.0.0.1";
$XMLRPCMountPoint = "/RPC2"

When I go to my rutorrent URL all I get is the emty interface, like this:
ZjEHEl.jpg

The error log file for nginx is empty.

What am I doing wrong? Any ideas?
 

Attachments

randac56

Member
May 25, 2018
915
0
16
It's fixed now. There was a setting in nginx.conf which wasn't supposed to be in the php section.