Page 1 of 1

Re: Access control list for web interface

Posted: August 6th, 2008, 9:10 am
by koetjuh
Would be great!

Could it be set it up with a type, IP address and mask and a description f.e.
Type: Host
IP: 127.0.0.1
(mask not needed in host type)
Description: Localhost

Type: Network/Mask
IP: 192.168.100.0 (or 192.168.0.0)
Mask: 255.255.255.0 (or 255.255.0.0)
Description: Local network

Type: Address range
IP from: 192.168.100.5
IP to: 192.168.100.8
(mask not needed in range)
Description: Everyone in local network, except the wife

and ofcourse to use combinations.

Re: Access control list for web interface

Posted: August 7th, 2008, 10:19 am
by sander
To keep Sabnzbd's focus on downloading and to avoid bloatware in Sabnzbd, wouldn't it be better to let a (personal) firewall take of this? IMHO it's a typical firewall job to allow certain IP-addresses/FQDNs to certain ports.

Re: Access control list for web interface

Posted: August 11th, 2008, 12:20 am
by mantis006
you can do this already with Apache.  Use apache's mod_proxy to forward requests and limit access to it.

Code: Select all

ProxyRequest Off
<Proxy *>
  Order deny,allow
  Deny from all
  Allow from somewhere.dyndns.org
</Proxy>

ProxyPass  /sabnzbd/  http://localhost:8080/sabnzbd/
ProxyPassReverse /sabnzbd/ http://localhost:8080/sabnzbd/
That should do it.

Re: Access control list for web interface

Posted: August 11th, 2008, 3:11 pm
by huleboeren
mantis006 wrote: you can do this already with Apache.  Use apache's mod_proxy to forward requests and limit access to it.

snip

That should do it.
Im not running Apache :P