Posts tagged as:

apache 2

Installing Apache With Worker MPM And PHP-FastCGI

by lifeLinux on August 28, 2011

The worker MPM uses multiple child processes with many threads each. Each thread handles one connection at a time. Worker generally is a good choice for high-traffic servers because it has a smaller memory footprint than the prefork MPM. This guide provides the process of switching from Apache’s default installation of MPM Prefork to that […]

{ 3 comments }

How To Limit File Upload Size On Apache

by lifeLinux on May 24, 2011

To limit the total size of the HTTP request body sent from the client use LimitRequestBody Directive.

{ 0 comments }