blob: d9d33423098eab8f9d0e8bb5e37979fcfaa73678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Place "ThrottleBps 0" in all your VirtualHost directives to monitor vhosts
<IfModule mod_throttle.c>
#ThrottleUser websiteusername speed 300 60 m
#ThrottleSlack 300
ThrottleIndicator yellow 75
ThrottleMaxDelay 5
ThrottleContentType text/html
# Enable status display handler
<Location /throttle>
SetHandler throttle-info
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>
</IfModule>
|