<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://cooker.wbitt.com/skins/common/feed.css?207"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://cooker.wbitt.com/index.php?action=history&amp;feed=atom&amp;title=Improving_Apache_webserver_performance</id>
		<title>Improving Apache webserver performance - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://cooker.wbitt.com/index.php?action=history&amp;feed=atom&amp;title=Improving_Apache_webserver_performance"/>
		<link rel="alternate" type="text/html" href="http://cooker.wbitt.com/index.php?title=Improving_Apache_webserver_performance&amp;action=history"/>
		<updated>2026-06-20T11:10:10Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.15.1</generator>

	<entry>
		<id>http://cooker.wbitt.com/index.php?title=Improving_Apache_webserver_performance&amp;diff=754&amp;oldid=prev</id>
		<title>Kamran:&amp;#32;Created page with ' &lt;pre&gt; [root@www httpdocs]# httpd -M Loaded Modules:  core_module (static)  mpm_prefork_module (static)  http_module (static)  so_module (static)  auth_basic_module (shared)  aut…'</title>
		<link rel="alternate" type="text/html" href="http://cooker.wbitt.com/index.php?title=Improving_Apache_webserver_performance&amp;diff=754&amp;oldid=prev"/>
				<updated>2010-12-26T16:13:29Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;#39; &amp;lt;pre&amp;gt; [root@www httpdocs]# httpd -M Loaded Modules:  core_module (static)  mpm_prefork_module (static)  http_module (static)  so_module (static)  auth_basic_module (shared)  aut…&amp;#39;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[root@www httpdocs]# httpd -M&lt;br /&gt;
Loaded Modules:&lt;br /&gt;
 core_module (static)&lt;br /&gt;
 mpm_prefork_module (static)&lt;br /&gt;
 http_module (static)&lt;br /&gt;
 so_module (static)&lt;br /&gt;
 auth_basic_module (shared)&lt;br /&gt;
 authn_file_module (shared)&lt;br /&gt;
 authn_default_module (shared)&lt;br /&gt;
 authz_host_module (shared)&lt;br /&gt;
 authz_user_module (shared)&lt;br /&gt;
 authz_groupfile_module (shared)&lt;br /&gt;
 authz_default_module (shared)&lt;br /&gt;
 include_module (shared)&lt;br /&gt;
 log_config_module (shared)&lt;br /&gt;
 setenvif_module (shared)&lt;br /&gt;
 mime_module (shared)&lt;br /&gt;
 status_module (shared)&lt;br /&gt;
 autoindex_module (shared)&lt;br /&gt;
 dir_module (shared)&lt;br /&gt;
 alias_module (shared)&lt;br /&gt;
 rewrite_module (shared)&lt;br /&gt;
 cgi_module (shared)&lt;br /&gt;
 negotiation_module (shared)&lt;br /&gt;
 cache_module (shared)&lt;br /&gt;
 expires_module (shared)&lt;br /&gt;
 headers_module (shared)&lt;br /&gt;
 evasive20_module (shared)&lt;br /&gt;
 bw_module (shared)&lt;br /&gt;
 mysql_auth_module (shared)&lt;br /&gt;
 limitipconn_module (shared)&lt;br /&gt;
 perl_module (shared)&lt;br /&gt;
 php5_module (shared)&lt;br /&gt;
 ssl_module (shared)&lt;br /&gt;
Syntax OK&lt;br /&gt;
[root@www httpdocs]#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cut down the Apache shared modules to the following only. The server runs multiple name based apache virtual hosts, running  Apache, MySQL, PHP and few websites developed in Joomla, WordPress and Wiki. There are a couple of CGI scripts too. User authentication is required both through MySQL auth modules, and through Basic Auth systems, normally in .htaccess files. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[root@www httpdocs]# grep ^LoadModule /etc/httpd/conf/httpd.conf&lt;br /&gt;
LoadModule auth_basic_module modules/mod_auth_basic.so&lt;br /&gt;
LoadModule authn_file_module modules/mod_authn_file.so&lt;br /&gt;
LoadModule authn_default_module modules/mod_authn_default.so&lt;br /&gt;
LoadModule authz_host_module modules/mod_authz_host.so&lt;br /&gt;
LoadModule authz_user_module modules/mod_authz_user.so&lt;br /&gt;
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so&lt;br /&gt;
LoadModule authz_default_module modules/mod_authz_default.so&lt;br /&gt;
LoadModule include_module modules/mod_include.so&lt;br /&gt;
LoadModule log_config_module modules/mod_log_config.so&lt;br /&gt;
LoadModule setenvif_module modules/mod_setenvif.so&lt;br /&gt;
LoadModule mime_module modules/mod_mime.so&lt;br /&gt;
LoadModule status_module modules/mod_status.so&lt;br /&gt;
LoadModule autoindex_module modules/mod_autoindex.so&lt;br /&gt;
LoadModule dir_module modules/mod_dir.so&lt;br /&gt;
LoadModule alias_module modules/mod_alias.so&lt;br /&gt;
LoadModule rewrite_module modules/mod_rewrite.so&lt;br /&gt;
LoadModule cgi_module modules/mod_cgi.so&lt;br /&gt;
LoadModule negotiation_module modules/mod_negotiation.so&lt;br /&gt;
LoadModule cache_module modules/mod_cache.so&lt;br /&gt;
LoadModule expires_module modules/mod_expires.so&lt;br /&gt;
LoadModule headers_module modules/mod_headers.so&lt;br /&gt;
LoadModule evasive20_module   /usr/lib64/httpd/modules/mod_evasive20.so&lt;br /&gt;
LoadModule bw_module          /usr/lib64/httpd/modules/mod_bw.so&lt;br /&gt;
[root@www httpdocs]# &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kamran</name></author>	</entry>

	</feed>