blob: c8d0774a80c68414b304a922483b76d9a8fcf81e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<IfDefine QOS>
LoadModule qos_module modules/mod_qos.so
</IfDefine>
#QS_ErrorPage /error-docs/qs_error.html
# restricts max concurrent requests for any location which has no
# individual rule:
#QS_LocRequestLimitDefault 200
# limits access to *.gif files to 100 concurrent requests:
#QS_LocRequestLimitMatch "^.*\.gif$" 100
# limits concurrent requests to the locations /images and /app/a:
#QS_LocRequestLimit /images 100
#QS_LocRequestLimit /app/a 300
# limits download bandwidth to 5Mbit/sec:
#QS_LocKBytesPerSecLimit /app/a 640
# two locations (/app/b and /app/c) representing a single application:
#QS_LocRequestLimitMatch "^(/app/b/|/app/c/).*$" 300
# allows the application to nominate VIP users by sending a
# "mod-qos-vip" HTTP response header:
#QS_VipHeaderName mod-qos-vip
#QS_SessionKey na&5san-sB.F4_0a=%D200ahLK1
|