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. No comments yet.
  1. No trackbacks yet.