Jump to content

alowishes

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by alowishes

  1. On 24/02/2018 at 8:35 AM, go69cars said:

     

     

    Thank you so much for posting this!!

     

    I followed it as written and it worked first try.   I hated having rutorrent exposed to the world.   I'm not sure why the developers don't put in a password from the get go

     

    Glad it was of some use to you :)

     

    I having an issue with a fork of this container and am not sure where to ask. Since updating to Unraid 6.4.1 irssi is unable to communicate outside the container. Everything else in the docker works as usual. I've tried adding ports 6667 to the docker but i still have the same issue. 

     

    The fork i'm using is https://hub.docker.com/r/horjulf/rutorrent-autodl/

     

    Is anyone able to point me in the right direction? 

     

  2. I just stumbled across this post while looking to see where the UNRAID share is mounted within the VM

     

    I was having the same issue with 17.04 

     

    The following fixed this issue for me 

     

    https://stackoverflow.com/questions/41609676/failed-to-start-raise-network-interfaces

     

    
    ip link
    example: lo , enp0s8
    
    add following lines in /etc/network/interfaces
    
    auto enp0s8
    iface enp0s8 inet dhcp
    
    restart your VM.

     

  3. On 8/3/2017 at 1:52 AM, bobokun said:

    does anyone have permission issues when accessing usershares via smb? I can't delete files that are created by automove plugin in rutorrent. I've already commented out the system.umask.set=022 in rtorrent.rc file.

     

    I just found i'm also having this issue... not sure what can be done about it..

     

    I think running Tools | New Permissions on the share location should allowing deleting, but i'm not sure if that is a permanent fix for other items created by AutoTools. 

  4. Hello, 

     

    Thank you for creating this docker. 

     

    I just wanted to add some steps for other laymen that were trying to get http authentication working. 

     

    I'm new to docker and Linux so found this with trial and error while reading this thread

     

    Modify the nginx.conf file by SSHing into UNRAID and executing

     nano /mnt/user/appdata/rutorrent/nginx/nginx.conf

     

    add following under location / { 

    			auth_basic "Restricted";
    			auth_basic_user_file /config/rutorrent/.htpasswd;

    It should look something like this when you are done. 

    		location / {
    			auth_basic "Restricted";
    			auth_basic_user_file /config/rutorrent/.htpasswd;
    			access_log /config/log/nginx/rutorrent.access.log;
    			error_log /config/log/nginx/rutorrent.error.log;
    			location ~ .php$ {
    				fastcgi_split_path_info ^(.+\.php)(.*)$;
    				fastcgi_pass    backendrutorrent;
    				fastcgi_index   index.php;
    				.....
    			}
    		}

    Create a .htpasswd file in the location specified above. This can be done multiple ways, i used http://www.htaccesstools.com/htpasswd-generator/ after Googling. 

     

    nano /mnt/user/appdata/rutorrent/rutorrent/.htpasswd

    Paste in the output from the above htpasswd generator site eg. 

     

    abc:$apr1$pQPv3Rnv$8c9JMYANl.rO0cgaa931F0

     

    Save the file. You may or may not need to restart the rutorrent docker. 

     

    Just a note that my server isn't externally accessible so i felt this was sufficient for my needs. I'm not sure what is involved in getting SSL working...

×
×
  • Create New...