Revision [1118]

Last edited on 2011-05-12 08:55:05 by FsseInfo
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


Revision [903]

Edited on 2009-10-28 11:43:22 by FsseInfo
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==
Deletions:
==Options==
In the [[HttpdConf httpd.conf]] you can define various settings such as


Revision [512]

Edited on 2008-05-06 12:11:50 by FsseInfo
Additions:
You can also configure ApacheVirtualHosts or vhosts
Deletions:
==virtual host (vhost)==
<VirtualHost *:*>
DocumentRoot /var/www/arctic
ServerName my.server
<Directory "/var/www/my.server">
allow from all
Options +Indexes
</Directory>
</VirtualHost>


Revision [511]

Edited on 2008-05-06 12:06:59 by FsseInfo
Additions:
==Options==
In the [[HttpdConf httpd.conf]] you can define various settings such as
AllowOveride
FollowSymLinks
Options Includes


Revision [508]

Edited on 2008-05-06 11:56:02 by FsseInfo
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}}
Deletions:
===http.conf===


Revision [287]

Edited on 2007-01-12 10:33:41 by FsseInfo
Additions:
AddType text/html .html
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
Deletions:
AddType text/html .html .shtml


Revision [286]

The oldest known version of this page was created on 2007-01-12 10:27:55 by FsseInfo
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki