XUpload - IP Disallow

Message
Author
ssanders
Posts: 6
Joined: Mar 06, 2012 4:29 pm

IP Disallow

#1 Postby ssanders » Sep 19, 2012 8:17 pm

Code: Select all

 # IP restrictions
 # Examples: '^(10\.0\.0\.182)$' - allow only 10.0.0.182, '^(10\.0\.1\.125|10\.0\.0\.\d+)$' - allow 10.0.1.125 & 10.0.0.* (*=number is wildcard)
 # Use '^.*$' for no restrictions
 ip_allowed => '^.*$',
Is there a way to use an ip_allowed regex to disallow one or more IPs? For now, I am using .htaccess instead.