linux下apache配置文件详解
tm.var DirectoryIndex index.html index.html.var //指定保护目录配置文件的名称 AccessFileName .htaccess //拒绝访问以.ht开头的文件,即保证.htaccess不被访问 <Files ~ “^.ht”> Order allow,deny Deny from all </Files> //指定负责处理MIME对应格式的配置文件的存放位置 TypesConfig /etc/mime.types //指定默认的MIME文件类型为纯文本或HTML文件 DefaultType text/plain //当mod_mime_magic.c模块被加载时,指定magic信息码配置文件的存放位置 <IfModule mod_mime_magic.c> # MIMEMagicFile /usr/share/magic.mime MIMEMagicFile conf/magic </IfModule> //只记录连接Apache服务器的Ip地址,而不纪录主机名 HostnameLookups Off //指定错误日志存放位置 ErrorLog logs/error_log //指定记录的错误信息的详细等级为warn等级 拥有帝国一切,皆有可能。欢迎访问phome.net LogLevel warn //定义四中记录日志的格式 LogFormat “%h %l %u %t “%r” %>s %b “%{ Referer }i” “%{ User-Agent }i”" combined LogFormat “%h %l %u %t “%r” %>s %b” common LogFormat “%{ Referer }i -> %U” referer LogFormat “%{ User-agent }i” agent //指定访问日志的纪录格式为combined(混合型),并指定访问日志存放位置 # CustomLog logs/access_log common CustomLog logs/access_log combined #CustomLog logs/referer_log referer #CustomLog logs/agent_log agent #CustomLog logs/access_log combined //设置apache自己产生的页面中使用apache服务器版本的签名 ServerSignature On //设置内容协商目录的访问别名 Alias /icons/ “/var/www/icons/” //设置/var/www/icons/的访问权限 <Directory “/var/www/icons”> //MultiViews 使用内容协商功决定被发送的网页的性质 Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory> //设置网页邮件服务 Alias /webmail “/usr/share/squirrelmail” <Directory “/usr/share/squirrelmail”> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory>
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |