apache

Apache php: the best way to combine.

This article is still under construction........

 Let's have a look at different points:

  • Apache with PHP module consumes a lot of memory because each request is handled by one process.
  • The worker MPM uses a thread based architecture as opposed to the pre-fork MPM which uses a process based architecture; the architectural differences between the two Multi-Processing Modules means that the worker MPM has a lower memory footprint.
  • The pool of fcgid-invoked programs is shared between all httpd workers.
  •  

 Related links.

Apache Module mod_status

The Status module allows a server administrator to find out how well their server is performing.

This module is normaly enable by default on ubuntu.

On a ubuntu distribution, you can edit the file
etc/apache2/mods-available/status.conf
for your personal configuration; for example to allow only from your ip.

Complete description can be found at apache website.

 

ab - Apache HTTP server benchmarking tool

ab - apache benchmarkThis is a tool for benchmarking your Apache Hypertext Transfer Protocol (HTTP) server. It is designed to give you an impression of how your current Apache installation performs. This especially shows you how many requests per second your Apache installation is capable of serving.

howto to use the redirect 301 with a full change in the domain name

What happens if you completely change your domain name from www.old-domain.com to www.new-domain.com?In this case it is important to inform the search engine of the change.The best solution is to redirect the request to the new url with a 301 code. How?

Howto install apache2 mod_rewrite on Ubuntu

The default apache php mysql installation on Ubuntu 9.04 server doesn't include mod_rewrite module. This module is required by Drupal "clean url". To install mod_rewrite, run command as below:sudo a2enmod rewriteGood luck..
Syndicate content