免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1387 | 回复: 0
打印 上一主题 下一主题

httpd中文注释 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-06-26 09:48 |只看该作者 |倒序浏览

### 部分 1: 全局环境
# ServerType 定义为 inetd 或 standalone 之一,Inetd 模式只用于 Unix 平台
ServerType standalone
# 主机路径
ServerRoot "D:/usr/local/apache"
# PidFile 路径
PidFile logs/httpd.pid
#
# ScoreBoardFile: File used to store internal server process information.
# Not all architectures require this.  But if yours does (you'll know because
# this file will be  created when you run Apache) then you *must* ensure that
# no two invocations of Apache share the same scoreboard file.
#
ScoreBoardFile logs/apache_runtime_status
# 不使用 srm.conf 和 access.conf 文件
#ResourceConfig nul
#AccessConfig nul
# 超时(秒)
Timeout 300
# 持久连接
KeepAlive On
# 最大请求持久连接
MaxKeepAliveRequests 100
# 持久连接超时(秒)
KeepAliveTimeout 30
# 每个子进程最大请求(0=无限)
MaxRequestsPerChild 0
# 每个子进程线程
ThreadsPerChild 50
# 监听
#Listen 3000
#Listen 12.34.56.78:80
# 限制 IP
#BindAddress *
# 动态共享对象 (DSO) 支持
# 注意:模块加载顺序很重要,在没有专家建议的情况下不要随便改动。
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
#LoadModule status_module modules/mod_status.so
#LoadModule info_module modules/mod_info.so
#LoadModule speling_module modules/mod_speling.so
#LoadModule rewrite_module modules/mod_rewrite.so
#LoadModule anon_auth_module modules/mod_auth_anon.so
#LoadModule dbm_auth_module modules/mod_auth_dbm.so
#LoadModule digest_auth_module modules/mod_auth_digest.so
#LoadModule digest_module modules/mod_digest.so
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
#LoadModule expires_module modules/mod_expires.so
#LoadModule headers_module modules/mod_headers.so
#LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule unique_id_module modules/mod_unique_id.so
# [无论你上面改变了什么模块,在这里做同样改变!]
ClearModuleList
#AddModule mod_vhost_alias.c
AddModule mod_env.c
AddModule mod_log_config.c
#AddModule mod_mime_magic.c
AddModule mod_mime.c
AddModule mod_negotiation.c
#AddModule mod_status.c
#AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_isapi.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
#AddModule mod_speling.c
AddModule mod_userdir.c
AddModule mod_alias.c
#AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
#AddModule mod_auth_anon.c
#AddModule mod_auth_dbm.c
#AddModule mod_auth_digest.c
#AddModule mod_digest.c
#AddModule mod_proxy.c
#AddModule mod_cern_meta.c
#AddModule mod_expires.c
#AddModule mod_headers.c
#AddModule mod_usertrack.c
#AddModule mod_unique_id.c
AddModule mod_so.c
AddModule mod_setenvif.c
# 扩展情况
#ExtendedStatus On
### 部分 2: 主机配置
# 端口
Port 80
# 主机管理员信箱
ServerAdmin
micronsky@hotmail.com
# 主机名
ServerName localhost
# 文档路径
DocumentRoot "d:/usr/www/html"
# 绝对限制许可
    Options FollowSymLinks
    AllowOverride None
# 文档路径权限设置
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
# 用户路径
    UserDir "D:/usr/local/apache/users/"
# Control access to UserDir directories.  The following is an example
# for a site where these directories are restricted to read-only.
#
#
#    AllowOverride FileInfo AuthConfig Limit
#    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
#   
#        Order allow,deny
#        Allow from all
#   
#   
#        Order deny,allow
#        Deny from all
#   
#
# 索引文件
    DirectoryIndex default.htm default.asp asp.htm index.html index.htm index.php
# 访问控制文件名
AccessFileName access.ht
#
# 防止访问控制文件被访问者察看
    Order allow,deny
    Deny from all
    Satisfy All
# 缓存协议
#CacheNegotiatedDocs
#
# 使用规范名称
UseCanonicalName On
# 类型设置
    TypesConfig conf/mime.types
#
# 默认协议
DefaultType text/plain
# 魔术设置
    MIMEMagicFile conf/magic
# 主机名查找
HostnameLookups Off
# 错误记录
ErrorLog logs/error.log
# 记录等级,包括:debug, info, notice, warn, error, crit, alert, emerg.
LogLevel error
# 记录格式
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
# 访问记录
#CustomLog logs/access.log common
# 服务器签名
# 选择一个: On | Off | EMail
ServerSignature On
# CGI 脚本解释路径
#!D:/usr/bin/perl
# 以 CGI 模式运行 PHP 脚本
ScriptAlias /php/ "D:/usr/local/php/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php.exe"
# 别名开始
    Alias /icons/ "D:/usr/local/apache/icons/"
   
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
   
    # 脚本路径别名
    ScriptAlias /cgi-bin/ "D:/usr/www/cgi-bin/"
   
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
   
# 别名结束
# 自动索引目录下所有文件
    IndexOptions FancyIndexing
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    DefaultIcon /icons/unknown.gif
    # Readme 文件名及 Header 文件名
    ReadmeName README.txt
    HeaderName HEADER.txt
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
# 结束自动索引
# 文档类型
    AddType application/x-tar .tgz
    AddEncoding x-compress .Z
    AddEncoding x-gzip .gz .tgz
    # 语言
    AddLanguage da .dk
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .ee
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage he .he
    AddCharset ISO-8859-8 .iso8859-8
    AddLanguage it .it
    AddLanguage ja .ja
    AddCharset ISO-2022-JP .jis
    AddLanguage kr .kr
    AddCharset ISO-2022-KR .iso-kr
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddCharset ISO-8859-2 .iso-pl
    AddLanguage pt .pt
    AddLanguage pt-br .pt-br
    AddLanguage ltz .lu
    AddLanguage ca .ca
    AddLanguage es .es
    AddLanguage sv .sv
    AddLanguage cs .cz .cs
    AddLanguage ru .ru
    AddLanguage zh-CN .zh-cn
    AddLanguage zh-TW .zh-tw
    AddCharset GB2312       .Gb2312  .gb
    AddCharset Big5         .Big5    .big5
    AddCharset WINDOWS-1251 .cp-1251
    AddCharset CP866        .cp866
    AddCharset ISO-8859-5   .iso-ru
    AddCharset KOI8-R       .koi8-r
    AddCharset UCS-2        .ucs2
    AddCharset UCS-4        .ucs4
    AddCharset UTF-8        .utf8
    # 语言优先顺序
   
        LanguagePriority cn en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
   
# 文档类型结束
# 定制浏览器特征
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
# 定制浏览器特征结束
### 部分 3: 虚拟主机
# 基于名称的虚拟主机示例:
#
#    ServerAdmin
webmaster@dummy-host.example.com
#    DocumentRoot /www/docs/dummy-host.example.com
#    ServerName dummy-host.example.com
#    ErrorLog logs/dummy-host.example.com-error_log
#    CustomLog logs/dummy-host.example.com-access_log common
#


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/26811/showart_328490.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP