diff --git a/docs/manual/misc/security_tips.html.en b/docs/manual/misc/security_tips.html.en index 6786a37210..531441e548 100644 --- a/docs/manual/misc/security_tips.html.en +++ b/docs/manual/misc/security_tips.html.en @@ -26,6 +26,7 @@ Some of the suggestions will be general, others specific to Apache.

top
+

Denial of Service (DoS) attacks

+ + + +

All network servers are subject to denial of service atacks + that attempt to prevent responses to clients by tying up the + resources of the server. It is not possible to prevent such + attacks entirely, but you can do certain things to mitigate the + problems that they create.

+ +

Often the most effective anti-DoS tools will be a firewall or + other operating-system tools. For example, most firewalls can be + configured to restrict the number of simultaneous connections from + any individual IP address or network, thus preventing a range of + simple attacks.

+ +

There are also certain Apache HTTP Server configuration + settings that can help mitigate problems:

+ + + +
top
+

Permissions on ServerRoot Directories

diff --git a/docs/manual/misc/security_tips.xml b/docs/manual/misc/security_tips.xml index 422d3317e2..5a77711872 100644 --- a/docs/manual/misc/security_tips.xml +++ b/docs/manual/misc/security_tips.xml @@ -52,6 +52,63 @@ +
+ + Denial of Service (DoS) attacks + +

All network servers are subject to denial of service atacks + that attempt to prevent responses to clients by tying up the + resources of the server. It is not possible to prevent such + attacks entirely, but you can do certain things to mitigate the + problems that they create.

+ +

Often the most effective anti-DoS tools will be a firewall or + other operating-system tools. For example, most firewalls can be + configured to restrict the number of simultaneous connections from + any individual IP address or network, thus preventing a range of + simple attacks.

+ +

There are also certain Apache HTTP Server configuration + settings that can help mitigate problems:

+ + + +
+ +
Permissions on ServerRoot Directories