Apache performance Windows
Apache required modules (minimum modules) to run a Drupal site (PHP/MySQL):
Submitted by chris on May 16, 2006 - 14:48. Apache modules (PHP...) | Drupal Configuration | Apache PerformanceHere is a list of the minimum Apache modules to have Drupal running (Drupal is PHP/MySQL application):
LoadModule access_module modules/mod_access.so (only with Apache prior to 2.1)
LoadModule authz_host_module modules/mod_authz_host.so (only with Apache 2.1 and later)
LoadModule dir_module modules/mod_dir.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule log_rotate_module modules/mod_log_rotate/mod_log_rotate.dll (details
on mod_log_rotate)
LoadModule mime_module modules/mod_mime.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule php4_module "E:/apache2/bin/php4apache2.dll"
How to enable Apache compression with mod_deflate
Submitted by chris on August 7, 2006 - 14:53. Apache Featured | Apache modules (PHP...) | Apache PerformanceApache comes standard with the mod_deflate module that enable you to compress the content of web pages before they are sent over the wire. Please note that you should probably disable other compressors (like PHP compression, if enable) before using the Apache compression feature.
To enable compression under Apache with the module mod_deflate, please follow these instructions:
ThreadsPerChild MaxRequestsPerChild
Submitted by chris on January 24, 2006 - 12:14. Apache PerformanceThreadsPerChild:
This directive sets the number of threads created by each child process (1 for
Windows).
The child creates these threads at startup and never creates more.
ThreadsPerChild 256 (default is 64)
MaxRequestsPerChild:
Limit on the number of requests that an individual child server will handle
during its life.
MaxRequestsPerChild 0 (This is the default value on Windows)

