|
|
限制线程的,我看了看好像这个mod_limitipconn
<IfModule mod_limitipconn.c>
<Location /somewhere>
MaxConnPerIP 3
# 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>
但是,那个设置速度的怎么设置的,就是像ftp一样,每一个线程的速度!!!
谢谢了,是哪一个模块!!!! |
|