阅读以下关于在Linux系统中配置Apache服务器的说明,回答问题1至问题3,将解答填入解答栏内。
【说明】
在Linux系统中采用Apache配置Web服务器。Apache服务器提供了丰富的功能,包括:目录索引、目录别名、虚拟主机、HTTP日志报告、CGI程序的SetUID执行等。
【问题2】
请在(1)~(7)空白处填写恰当的内容。
Apache的主配置文件为httpd.conf。某Web服务器的httpd.conf文件部分内容如下:
ServerType Standalone
ServerROOt"/etc/httpd"
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 5
MaxSpareServers 20
StartServers 8
MaxClients 150
MaxRequestsPerChild 100
Port 8080
User nobody
Group nobody
ServerAdmin root@webtest.com.cn
ServerName WebTest
DocumentRoot "/home/webtest/jakarta- tomcat/webapps/webtest"
Options FollowsymLinks
AllowOverride None
Options Indexes Includes FollowSymLinks
AllowOverride None
Order allow, deny
Allow from all
DirectoryIndex index.html index.htm index.shtm1 index.cgi
Alias/doc/ /usr/doc/
Order deny, allow
deny from all
allow from localhost
Options Indexes FollowSymLinks
以RPM方式安装的Apache服务器,配置文件httpd.conf存储在Linux的 (1) 目录下。根据上述配置文件,该Web服务器运行在 (2) 模式下,其运行效率比在inetd模式下(3) ;当某个Web连接超过 (4) 秒没有数据传输时,系统断开连接。
如果客户需要访问Linux服务器上/usr/doc目录,则应在浏览器地址栏中输入 (5) 。
虚拟主机是指在同一台服务器上实现多个Web站点。虚拟主机可以是基于IP地址的虚拟主机,也可以是基于(6) 的虚拟主机。创建基于 (6) 的虚拟主机时,还需要配置(7) ,并在区数据库文件中添加相关记录。
参考答案:
(1)/etc/httpd/conf (2)standalone (3)高 (4)300 (5)http://服务器IP地址(或主机名):8080/doc/ (6)名称(或名字,域名) (7)DNS,或域名解析服务