summaryrefslogtreecommitdiff
blob: 67a62b4f76c7b43371afbe7da45aca2768269377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Syntax can be found at http://www.cohprog.com/v3/bandwidth/doc-en.html
<IfModule mod_bandwidth.c>

  BandWidthDataDir /var/cache/mod_bandwidth

  # This must be turned on for mod_bandwidth to actually do anything
  # These directives can go inside a VirtualHost or Directory, etc...
  # 
  # BandWidthModule On

  # Limit 196.168.0.0/24 to 80KB/sec, with a minimum of 60KB/sec
  #
  # BandWidth 196.168.0 80000
  # BandWidth 196.168.0 60000

  # Everyone else shares 50KB/sec
  #
  # Bandwidth all 50000

</IfModule>