Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Using Apache 2.2 and limit the amount of web requests to apa |
|
Author |
|
oziworld
Joined: 06 Aug 2006 Posts: 7
|
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Thu 28 Dec '06 11:25 Post subject: |
|
|
You could limit it by IP, if you know the IP's or limit it by domain
Code: |
<Limit GET>
order deny,allow
deny from all
allow from 134.100
allow from domain.tld
allow from 136.172.180.207
</Limit>
|
Or you could use a auth.
Why do too many requests kill your server? Maybe it is not reach able or bandwidth to the single clients goes down. |
|
Back to top |
|
oziworld
Joined: 06 Aug 2006 Posts: 7
|
Posted: Thu 28 Dec '06 23:00 Post subject: |
|
|
Thank you for this answer.
I was wondering can I limit the number of requests per time period from apache to my web server?
ie so that if a hacker that has more than 1 IP address begins hacking us, apache will limit the number of requests per minute? |
|
Back to top |
|
|
|
|
|
|