]> git.pld-linux.org Git - packages/apache-mod_limitipconn.git/blob - apache.conf
- add deps for apache api etc
[packages/apache-mod_limitipconn.git] / apache.conf
1 LoadModule limitipconn_module   modules/mod_limitipconn.so
2
3 # This module will not function unless mod_status is loaded and the "ExtendedStatus On" directive is set.
4 #ExtendedStatus On
5
6 <IfModule mod_limitipconn.c>
7 # Global limit
8 # MaxConnPerIP 100
9 #
10 #       <Location /somewhere>
11 #               MaxConnPerIP 3
12 #               # exempting images from the connection limit is often a good
13 #               # idea if your web page has lots of inline images, since these
14 #               # pages often generate a flurry of concurrent image requests
15 #               NoIPLimit image/*
16 #       </Location>
17 #
18 #       <Location /mp3>
19 #               MaxConnPerIP 1
20 #               # In this case, all MIME types other than audio/mpeg and video*
21 #               # are exempt from the limit check
22 #               OnlyIPLimit audio/mpeg video
23 #       </Location>
24 </IfModule>
This page took 0.097811 seconds and 3 git commands to generate.