- 热门文章:
- · 通过对php一些服务器端特性的配置加强php的安全
- · win2k下asp+php+mysql+jsp+xsl+xml的安装
- · Win32下Apache 2.0.35 php 4.2.0安装扎记
- · Apache Reference Manual (1)
- · Apache Reference Manual (7)
- · 天衣无缝:IIS与PHP水火也相容
- · Windows下的PHP5.0安装配制详解
- · Win2000安装Apache+PHP4+MySQL
- · PHP 5.0 Pear安装方法
- · IIS下安装PHP4及MySQL
- · Windows中安装Apache2和PHP4权威指南
- · 在Linux下安装显卡驱动程序
Apache Reference Manual (8)
Syntax: MaxRequestsPerChild number
Default: MaxRequestsPerChild 0
Context: server config
Status: core
The MaxRequestsPerChild directive sets the limit on the number of requests that an individual child server process will handle. After MaxRequestsPerChild requests, the child process will die. If MaxRequestsPerChild is 0, then the process will never expire.
Setting MaxRequestsPerChild to a non-zero limit has two beneficial effects:
it limits the amount of memory that process can consume by (accidental) memory leakage;
by giving processes a finite lifetime, it helps reduce the number of processes when the server load reduces.
This directive has no effect on Win32.
NOTE: For KeepAlive requests, only the first request is counted towards this limit. In effect, it changes the behavior to limit the number of connections per child.
--------------------------------------------------------------------------------
MaxSpareServers directive
Syntax: MaxSpareServers number
Default: MaxSpareServers 10
Context: server config
Status: core
The MaxSpareServers directive sets the desired maximum number of idle child server processes. An idle process is one which is not handling a request. If there are more than MaxSpareServers idle, then the parent process will kill off the excess processes.
Tuning of this parameter should only be necessary on very busy sites. Setting this parameter to a large number is almost always a bad idea.
This directive has no effect when used with the Apache Web server on a Microsoft Windows platform.
See also MinSpareServers and StartServers.
--------------------------------------------------------------------------------
MinSpareServers directive
Syntax: MinSpareServers number
Default: MinSpareServers 5
Context: server config
Status: core
The MinSpareServers directive sets the desired minimum number of idle child server processes. An idle process is one which is not handling a request. If there are fewer than MinSpareServers idle, then the parent process creates new children at a maximum rate of 1 per second.
Tuning of this parameter should only be necessary on very busy sites. Setting this parameter to a large number is almost always a bad idea.
This directive has no effect on Microsoft Windows.
See also MaxSpareServers and StartServers.
--------------------------------------------------------------------------------
NameVirtualHost directive
Syntax: NameVirtualHost addr[:port]
Context: server config
Status: core
Compatibility: NameVirtualHost is only available in Apache 1.3 and later
The NameVirtualHost directive is a required directive if you want to configure name-based virtual hosts.
Although addr can be hostname it is recommended that you always use an IP address, e.g.
NameVirtualHost 111.22.33.44
With the NameVirtualHost directive you specify the address to which your name-based virtual host names resolve. If you have multiple name-based hosts on multiple addresses, repeat the directive for each address.
Note: the "main server" and any _default_ servers will never be served for a request to a NameVirtualHost IP Address (unless for some reason you specify NameVirtualHost but then don@#t define any VirtualHosts for that address).
Optionally you can specify a port number on which the name-based virtual hosts should be used, e.g.
NameVirtualHost 111.22.33.44:8080
See also: Apache Virtual Host documentation
--------------------------------------------------------------------------------
Options directive
Syntax: Options [+|-]option [+|-]option ...
Context: server config, virtual host, directory, .htaccess
Override: Options
Status: core
The Options directive controls which server features are available in a particular directory.
option can be set to None, in which case none of the extra features are enabled, or one or more of the following:
All
All options except for MultiViews. This is the default setting.
ExecCGI
Execution of CGI scripts is permitted.
FollowSymLinks
The server will follow symbolic links in this directory.
Note: even though the server follows the symlink it does not change the pathname used to match against <Directory> sections.
Note: this option gets ignored if set inside a <Location> section.
Includes
Server-side includes are permitted.
IncludesNOEXEC
Server-side includes are permitted, but the #exec command and #include of CGI scripts are disabled.
Indexes
If a URL which maps to a directory is requested, and the there is no DirectoryIndex (e.g., index.html) in that directory, then the server will return a formatted listing of the directory.
MultiViews
Content negotiated MultiViews are allowed.
SymLinksIfOwnerMatch
The server will only follow symbolic links for which the target file or directory is owned by the same user id as the link.
Note: this option gets ignored if set inside a <Location> section.
Normally, if multiple Options could apply to a directory, then the most specific one is taken complete; the options are not merged. However if all the options on the Options directive are preceded by a + or - symbol, the options are merged. Any options preceded by a + are added to the options currently in force, and any options preceded by a - are removed from the options currently in force.
For example, without any + and - symbols:
<Directory /web/docs>
Options Indexes FollowSymLinks
</Directory>
<Directory /web/docs/spec>
Options Includes
</Directory>
then only Includes will be set for the /web/docs/spec directory. However if the second Options directive uses the + and - symbols:
<Directory /web/docs>
Options Indexes FollowSymLinks
</Directory>
<Directory /web/docs/spec>
Options +Includes -Indexes
</Directory>
then the options FollowSymLinks and Includes are set for the /web/docs/spec directory.
Note: Using -IncludesNOEXEC or -Includes disables server-side includes completely regardless of the previous setting.
The default in the absence of any other settings is All.
--------------------------------------------------------------------------------
下一篇:通过对php一些服务器端特性的配置加强php的安全 >>
相关文章:
- · redhat 9下配置APACHE2.0.50 +PHP5+MYSQL4.0.20+GD库
- · php5 for windows 安装详解
- · windows 2000/XP/2003下安裝APACHE2.0.53、PHP5.0.3
- · 在Windows中安装Apache2和PHP4的权威指南
- · PHP的相关运行环境
- · WIN2000 Apache php mysql 安装及安全手册
- · PHP教程.安装PHP
- · Linux下安装GD
- · PHP脚本的8个技巧(1)把PHP安装为Apache DSO
- · PHP及其模块的安装
- · Win2003下APACHE+PHP5+MYSQL4+PHPMYADMIN 的简易安装配置
- · Win2000下PHP服务器安装攻略
- · win2k下Apache2+PHP4+MySql配置
- · 新版mysql+apache+php Linux安装指南
- · Win9x/ME下Apache+PHP安装配置
- · PHPlet在Windows下的安装
- · 书评:Web Database Applications with PHP & MySQL
- · 面对对象的思考(二)
- · 让你的PHP4和PHP5共存...
- · 在Windows中安装Apache2和PHP4的权威指南
- · 在 WIN 平台上让你的 Apache 2.0.45 支持 PHP
- · 图解:PHP 在Windows 2003 Enterprise Server 、IIS6.0 下的安装
- · Winodws下IIS/Apache+PHP+MySQL的安装配置
- · Apache性能优化技巧
- · APACHE安装笔记
- · 如何自己安装和使用PEAR
- · Zend Optimizer 配置指南
- · Linux简明系统维护手册(五)
- · Linux简明系统维护手册(四)
- · Linux简明系统维护手册(三)
- · Linux简明系统维护手册(二)
- · PHP4.23在WindowsXP下的IIS和Apache2两种服务器上的安装实例
- · IIS使用10则
- · 用Apache Server配置php,cgi服务器
- · Apache服务器的保护
- · Apache服务器的用户认证
- · 虚拟主机中对PHP的特殊设置
- · 透析PHP的配置文件
