mod_throttle problems
I'm currently running apache 1.3.27/mod_throttle 3.1.2 on redhat 7.3. I've setup multiple ThrottlePolicy's inside of <Directory> blocks.They all show up correctly on my ThrottleStatus, but after one of them exceeds its Volume, it doesn't throw an error. It just loads the page normally.
Here is a snippet of my httpd.conf:
ThrottlePolicy none
ThrottleRuntimeFile /tmp/ThrottleRuntimeFile
<Location /throttle-status>
SetHandler throttle-status
AuthUserFile /etc/httpd/conf/.htpasswd
AuthType Basic
AuthName throttle
Require user prator
</Location>
<Directory /home/prator/public_html>
ThrottlePolicy Volume 100m 1d
</Directory>