blob: 279e7b2d260b16803ad24f9b96fae0b22bcb3aad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<IfDefine BW>
<IfModule !mod_bw.c>
LoadModule bw_module modules/mod_bw.so
</IfModule>
</IfDefine>
<IfModule mod_bandwidth.c>
# 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>
|