Additions:
http://httpd.apache.org/docs/2.3/mod/mpm_common.html
http://httpd.apache.org/docs/2.3/mod/mod_status.html
http://www.apache.org/server-status
Make sure that MaxCLients < ServerLimit * ThreadsPerChild
http://httpd.apache.org/docs/2.3/mod/mod_status.html
http://www.apache.org/server-status
Make sure that MaxCLients < ServerLimit * ThreadsPerChild
Additions:
==prefork==
if you have a limited amount of RAM you may want to reduce these values
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule prefork.c>
StartServers 4
MinSpareServers 3
MaxSpareServers 10
ServerLimit 32
MaxClients 16
MaxRequestsPerChild 1000
</IfModule>
==options==
In the [[HttpdConf httpd.conf]] you can define various option settings such as
==apache virtual hosts==
if you have a limited amount of RAM you may want to reduce these values
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule prefork.c>
StartServers 4
MinSpareServers 3
MaxSpareServers 10
ServerLimit 32
MaxClients 16
MaxRequestsPerChild 1000
</IfModule>
==options==
In the [[HttpdConf httpd.conf]] you can define various option settings such as
==apache virtual hosts==
Deletions:
In the [[HttpdConf httpd.conf]] you can define various settings such as
Additions:
You can also configure ApacheVirtualHosts or vhosts
Deletions:
<VirtualHost *:*>
DocumentRoot /var/www/arctic
ServerName my.server
<Directory "/var/www/my.server">
allow from all
Options +Indexes
</Directory>
</VirtualHost>
Additions:
==Options==
In the [[HttpdConf httpd.conf]] you can define various settings such as
AllowOveride
FollowSymLinks
Options Includes
In the [[HttpdConf httpd.conf]] you can define various settings such as
AllowOveride
FollowSymLinks
Options Includes
Additions:
>>http://httpd.apache.org/docs/2.2/configuring.html
http://httpd.apache.org/docs/2.2/sections.html
http://httpd.apache.org/docs/2.2/vhosts/
http://httpd.apache.org/docs/2.2/howto/htaccess.html
>>===http.conf===
==file types==
==virtual host (vhost)==
<VirtualHost *:*>
DocumentRoot /var/www/arctic
ServerName my.server
<Directory "/var/www/my.server">
allow from all
Options +Indexes
</Directory>
</VirtualHost>
----
REFERRERS
{{backlinks}}
http://httpd.apache.org/docs/2.2/sections.html
http://httpd.apache.org/docs/2.2/vhosts/
http://httpd.apache.org/docs/2.2/howto/htaccess.html
>>===http.conf===
==file types==
==virtual host (vhost)==
<VirtualHost *:*>
DocumentRoot /var/www/arctic
ServerName my.server
<Directory "/var/www/my.server">
allow from all
Options +Indexes
</Directory>
</VirtualHost>
----
REFERRERS
{{backlinks}}
Deletions:
Additions:
AddType text/html .html
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml