limit of connect

clbbhk

Verified User
Joined
Nov 5, 2005
Messages
19
connection limit

how to limit every vhost 's connection?
 
Last edited:
What do you want to limit? Bandwidth? Number of simultaneous connections? Diskspace? Netspeed? ect.?
 
im trying to install mod_limitipconn but i dont understand where to put this:

Code:
<IfModule mod_limitipconn.c>
    <Location />
        MaxConnPerIP 5
        # exempting images from the connection limit is often a good
        # idea if your web page has lots of inline images, since these
        # pages often generate a flurry of concurrent image requests
        #NoIPLimit image/*
    </Location>

    #<Location /mp3>
    #    MaxConnPerIP 1
        # In this case, all MIME types other than audio/mpeg and video*
        # are exempt from the limit check
    #    OnlyIPLimit audio/mpeg video
    #</Location>
</IfModule>

ive tryed into server-wide http.conf and into the http template for have the same on all domains but seems is not working..

anyone can help me?
 
Back
Top