Sabnzbdplus installatie onder XBMC

November 26th, 2009 Leave a comment Go to comments

Ik ben bezig met sabnzbdplus. Dit heb ik vandaag op mijn XBMC geinstalleerd. Het draait nu achter de apache front-end en is voorzien van een htaccess beveiliging. Even een samenvatting van de handelingen die ik heb moeten verrichten:

sudo apt-get install sabnzbdplus

http://sabnzbd.wikidot.com/howto-apache

sudo pico /etc/default/sabnzbdplus

change the username to xbmc

pico /etc/apache2/apache2.conf

#Add Hostname
ServerName localhost:80

sudo pico /etc/apache2/conf.d/sabnzb.conf

# Put this after the other LoadModule directives
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so

order deny,allow
deny from all
allow from all
ProxyPass http://localhost:8080/sabnzbd
ProxyPassReverse http://localhost:8080/sabnzbd
AuthUserFile /var/www/sabnzbd/.htpasswd
AuthName "sabnzbd authentication required"
AuthType Basic
Require valid-user

sudo htpasswd -c /var/www/sabnzbd/.htpasswd xbmc

  1. ronald
    March 15th, 2010 at 15:12 | #1

    Om sabzndbplus exetrn beschikbaar te maken had ik het volgende nodig:

    nano /home/xbmc/.sabnzbd/sabnzbd.ini

    zoek naar host, vervang localhost door je IP adres.

  2. Oizopower
    March 15th, 2010 at 18:57 | #2

    Mocht je hier niet uitkomen dan kan je altijd via putty een SSH tunnel opzetten.
    Hierdoor kan je gewoon via de web interface de toegang openzetten voor iedereen in het netwerk.

    hier is een hele simpele howto om een tunnel op te zetten.
    vervang het poort met : 8080 (standaard) of 9090
    http://realprogrammers.com/how_to/set_up_an_ssh_tunnel_with_putty.html

    In het voorbeeld hierboven doen ze het voor MySQL maar daar moet je even niet op letten.

  1. No trackbacks yet.