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.
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:
+ +TimeOut directive
+ should be lowered on sites that are subject to DoS attacks.
+ Setting this to as low as a few seconds may be appropriate. See
+ also the KeepAliveTimeout
+ directive and various timeout-related directives provided by
+ other modules.AcceptFilter directive
+ to offload part of the request processing to the operating
+ system. This is active by default in Apache httpd, but may
+ require reconfiguration of your kernel.MaxClients directive to allow
+ the server to handle the maximum number of simultaneous
+ connections without running out of resources. See also the performance tuning
+ documentation.event mpm
+ uses asynchronous processing to avoid devoting a thread to each
+ connection.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:
+ +