Access control list for web interface

Want something added? Ask for it here.
Post Reply
koetjuh
Newbie
Newbie
Posts: 3
Joined: August 6th, 2008, 7:59 am

Re: Access control list for web interface

Post 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.
User avatar
sander
Release Testers
Release Testers
Posts: 8877
Joined: January 22nd, 2008, 2:22 pm

Re: Access control list for web interface

Post 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.
Please don't send me unrequested PM's; the forum is the best way to communicate.
If someone helps you, please reply to that help.
f you like our support, check our special newsserver deal or donate at: https://sabnzbd.org/donate
User avatar
mantis006
Release Testers
Release Testers
Posts: 17
Joined: January 28th, 2008, 5:06 am
Contact:

Re: Access control list for web interface

Post 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.
~Chris
huleboeren
Release Testers
Release Testers
Posts: 114
Joined: January 25th, 2008, 1:10 pm

Re: Access control list for web interface

Post 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
Post Reply