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.
Access control list for web interface
Re: Access control list for web interface
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.
If you like our support, check our special newsserver deal or donate at: https://sabnzbd.org/donate
Re: Access control list for web interface
you can do this already with Apache. Use apache's mod_proxy to forward requests and limit access to it.
That should do 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/
~Chris
-
- Release Testers
- Posts: 114
- Joined: January 25th, 2008, 1:10 pm
Re: Access control list for web interface
Im not running Apachemantis006 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.