home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / conf / httpd.conf < prev    next >
Text File  |  2001-06-05  |  36KB  |  985 lines

  1. #
  2. # Based upon the NCSA server configuration files originally by Rob McCool.
  3. #
  4. # This is the main Apache server configuration file.  It contains the
  5. # configuration directives that give the server its instructions.
  6. # See <URL:http://www.apache.org/docs/> for detailed information about
  7. # the directives.
  8. #
  9. # Do NOT simply read the instructions in here without understanding
  10. # what they do.  They're here only as hints or reminders.  If you are unsure
  11. # consult the online docs. You have been warned.  
  12. #
  13. # After this file is processed, the server will look for and process
  14. # c:/apache/conf/srm.conf and then c:/apache/conf/access.conf
  15. # unless you have overridden these with ResourceConfig and/or
  16. # AccessConfig directives here.
  17. #
  18. # The configuration directives are grouped into three basic sections:
  19. #  1. Directives that control the operation of the Apache server process as a
  20. #     whole (the 'global environment').
  21. #  2. Directives that define the parameters of the 'main' or 'default' server,
  22. #     which responds to requests that aren't handled by a virtual host.
  23. #     These directives also provide default values for the settings
  24. #     of all virtual hosts.
  25. #  3. Settings for virtual hosts, which allow Web requests to be sent to
  26. #     different IP addresses or hostnames and have them handled by the
  27. #     same Apache server process.
  28. #
  29. # Configuration and logfile names: If the filenames you specify for many
  30. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  31. # server will use that explicit path.  If the filenames do *not* begin
  32. # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
  33. # with ServerRoot set to "/usr/local/apache" will be interpreted by the
  34. # server as "/usr/local/apache/logs/foo.log".
  35. #
  36. # NOTE: Where filenames are specified, you must use forward slashes
  37. # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
  38. # If a drive letter is omitted, the drive on which Apache.exe is located
  39. # will be used by default.  It is recommended that you always supply
  40. # an explicit drive letter in absolute paths, however, to avoid
  41. # confusion.
  42. #
  43.  
  44. ### Section 1: Global Environment
  45. #
  46. # The directives in this section affect the overall operation of Apache,
  47. # such as the number of concurrent requests it can handle or where it
  48. # can find its configuration files.
  49. #
  50.  
  51. #
  52. # ServerType is either inetd, or standalone.  Inetd mode is only supported on
  53. # Unix platforms.
  54. #
  55. ServerType standalone
  56.  
  57. #
  58. # ServerRoot: The top of the directory tree under which the server's
  59. # configuration, error, and log files are kept.
  60. #
  61. # Do NOT add a slash at the end of the directory path.
  62. #
  63. ServerRoot "/apache"
  64.  
  65. #
  66. # PidFile: The file in which the server should record its process
  67. # identification number when it starts.
  68. #
  69. PidFile logs/httpd.pid
  70.  
  71. #
  72. # ScoreBoardFile: File used to store internal server process information.
  73. # Not all architectures require this.  But if yours does (you'll know because
  74. # this file will be  created when you run Apache) then you *must* ensure that
  75. # no two invocations of Apache share the same scoreboard file.
  76. #
  77. ScoreBoardFile logs/apache_runtime_status
  78.  
  79. #
  80. # In the standard configuration, the server will process httpd.conf (this 
  81. # file, specified by the -f command line option), srm.conf, and access.conf 
  82. # in that order.  The latter two files are now distributed empty, as it is 
  83. # recommended that all directives be kept in a single file for simplicity.  
  84. # The commented-out values below are the built-in defaults.  You can have the 
  85. # server ignore these files altogether by using "/dev/null" (for Unix) or
  86. # "nul" (for Win32) for the arguments to the directives.
  87. #
  88. #ResourceConfig conf/srm.conf
  89. #AccessConfig conf/access.conf
  90.  
  91. #
  92. # Timeout: The number of seconds before receives and sends time out.
  93. #
  94. Timeout 300
  95.  
  96. #
  97. # KeepAlive: Whether or not to allow persistent connections (more than
  98. # one request per connection). Set to "Off" to deactivate.
  99. #
  100. KeepAlive On
  101.  
  102. #
  103. # MaxKeepAliveRequests: The maximum number of requests to allow
  104. # during a persistent connection. Set to 0 to allow an unlimited amount.
  105. # We recommend you leave this number high, for maximum performance.
  106. #
  107. MaxKeepAliveRequests 100
  108.  
  109. #
  110. # KeepAliveTimeout: Number of seconds to wait for the next request from the
  111. # same client on the same connection.
  112. #
  113. KeepAliveTimeout 15
  114.  
  115. #
  116. # Apache on Win32 always creates one child process to handle requests.  If it
  117. # dies, another child process is created automatically.  Within the child
  118. # process multiple threads handle incoming requests.  The next two
  119. # directives control the behaviour of the threads and processes.
  120. #
  121.  
  122. #
  123. # MaxRequestsPerChild: the number of requests each child process is
  124. # allowed to process before the child dies.  The child will exit so
  125. # as to avoid problems after prolonged use when Apache (and maybe the
  126. # libraries it uses) leak memory or other resources.  On most systems, this
  127. # isn't really needed, but a few (such as Solaris) do have notable leaks
  128. # in the libraries.  For Win32, set this value to zero (unlimited)
  129. # unless advised otherwise.
  130. #
  131. # NOTE: This value does not include keepalive requests after the initial
  132. #       request per connection. For example, if a child process handles
  133. #       an initial request and 10 subsequent "keptalive" requests, it
  134. #       would only count as 1 request towards this limit.
  135. #
  136. MaxRequestsPerChild 0
  137.  
  138. #
  139. # Number of concurrent threads (i.e., requests) the server will allow.
  140. # Set this value according to the responsiveness of the server (more
  141. # requests active at once means they're all handled more slowly) and
  142. # the amount of system resources you'll allow the server to consume.
  143. #
  144. ThreadsPerChild 50
  145.  
  146. #
  147. # Listen: Allows you to bind Apache to specific IP addresses and/or
  148. # ports, in addition to the default. See also the <VirtualHost>
  149. # directive.
  150. #
  151. #Listen 3000
  152. #Listen 12.34.56.78:80
  153.  
  154. #
  155. # BindAddress: You can support virtual hosts with this option. This directive
  156. # is used to tell the server which IP address to listen to. It can either
  157. # contain "*", an IP address, or a fully qualified Internet domain name.
  158. # See also the <VirtualHost> and Listen directives.
  159. #
  160. #BindAddress *
  161.  
  162. #
  163. # Apache Modules compiled into the standard Windows build
  164. #
  165. # The following modules are bound into the standard Apache binary distribution
  166. # for Windows.  To change the standard behavior, uncomment the following lines 
  167. # and modify the list of those specific modules to be enabled in the server.
  168. #
  169. # WARNING: This is an advanced option that may render your server inoperable!
  170. # Do not use these directives without expert guidance.
  171. #
  172. #ClearModuleList
  173. #AddModule mod_so.c mod_mime.c mod_access.c mod_auth.c mod_negotiation.c
  174. #AddModule mod_include.c mod_autoindex.c mod_dir.c mod_cgi.c mod_userdir.c
  175. #AddModule mod_alias.c mod_env.c mod_log_config.c mod_asis.c mod_imap.c
  176. #AddModule mod_actions.c mod_setenvif.c mod_isapi.c
  177.  
  178. #
  179. # Dynamic Shared Object (DSO) Support
  180. #
  181. # To be able to use the functionality of a module which was built as a DSO you
  182. # have to place corresponding `LoadModule' lines at this location so the
  183. # directives contained in it are actually available _before_ they are used.
  184. # Please read the file README.DSO in the Apache 1.3 distribution for more
  185. # details about the DSO mechanism and run `apache -l' for the list of already
  186. # built-in (statically linked and thus always available) modules in your Apache
  187. # binary.
  188. #
  189. # Note: The order in which modules are loaded is important.  Don't change
  190. # the order below without expert advice.
  191. #
  192. #LoadModule anon_auth_module modules/ApacheModuleAuthAnon.dll
  193. #LoadModule dbm_auth_module modules/ApacheModuleAuthDBM.dll
  194. #LoadModule digest_auth_module modules/ApacheModuleAuthDigest.dll
  195. #LoadModule cern_meta_module modules/ApacheModuleCERNMeta.dll
  196. #LoadModule digest_module modules/ApacheModuleDigest.dll
  197. #LoadModule expires_module modules/ApacheModuleExpires.dll
  198. #LoadModule headers_module modules/ApacheModuleHeaders.dll
  199. #LoadModule proxy_module modules/ApacheModuleProxy.dll
  200. #LoadModule rewrite_module modules/ApacheModuleRewrite.dll
  201. #LoadModule speling_module modules/ApacheModuleSpeling.dll
  202. #LoadModule info_module modules/ApacheModuleInfo.dll
  203. #LoadModule status_module modules/ApacheModuleStatus.dll
  204. #LoadModule usertrack_module modules/ApacheModuleUserTrack.dll
  205.  
  206. #
  207. # ExtendedStatus controls whether Apache will generate "full" status
  208. # information (ExtendedStatus On) or just basic information (ExtendedStatus
  209. # Off) when the "server-status" handler is called. The default is Off.
  210. #
  211. #ExtendedStatus On
  212.  
  213. ### Section 2: 'Main' server configuration
  214. #
  215. # The directives in this section set up the values used by the 'main'
  216. # server, which responds to any requests that aren't handled by a
  217. # <VirtualHost> definition.  These values also provide defaults for
  218. # any <VirtualHost> containers you may define later in the file.
  219. #
  220. # All of these directives may appear inside <VirtualHost> containers,
  221. # in which case these default settings will be overridden for the
  222. # virtual host being defined.
  223. #
  224.  
  225. #
  226. # Port: The port to which the standalone server listens.  Certain firewall
  227. # products must be configured before Apache can listen to a specific port.
  228. # Other running httpd servers will also interfere with this port.  Disable
  229. # all firewall, security, and other services if you encounter problems.
  230. # To help diagnose problems use the Windows NT command NETSTAT -a
  231. #
  232. Port 80
  233.  
  234. #
  235. # ServerAdmin: Your address, where problems with the server should be
  236. # e-mailed.  This address appears on some server-generated pages, such
  237. # as error documents.
  238. #
  239. ServerAdmin you@your.address
  240.  
  241. #
  242. # ServerName allows you to set a host name which is sent back to clients for
  243. # your server if it's different than the one the program would get (i.e., use
  244. # "www" instead of the host's real name).
  245. #
  246. # Note: You cannot just invent host names and hope they work. The name you 
  247. # define here must be a valid DNS name for your host. If you don't understand
  248. # this, ask your network administrator.
  249. # If your host doesn't have a registered DNS name, enter its IP address here.
  250. # You will have to access it by its address (e.g., http://123.45.67.89/)
  251. # anyway, and this will make redirections work in a sensible way.
  252. #
  253. # 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your 
  254. # machine always knows itself by this address. If you use Apache strictly for 
  255. # local testing and development, you may use 127.0.0.1 as the server name.
  256. #
  257. ServerName localhost
  258.  
  259.  
  260. #
  261. # DocumentRoot: The directory out of which you will serve your
  262. # documents. By default, all requests are taken from this directory, but
  263. # symbolic links and aliases may be used to point to other locations.
  264. #
  265. DocumentRoot "/apache/htdocs"
  266.  
  267. #
  268. # Each directory to which Apache has access, can be configured with respect
  269. # to which services and features are allowed and/or disabled in that
  270. # directory (and its subdirectories). 
  271. #
  272. # First, we configure the "default" to be a very restrictive set of 
  273. # permissions.  
  274. #
  275. <Directory />
  276.     Options FollowSymLinks
  277.     AllowOverride None
  278. </Directory>
  279.  
  280. #
  281. # Note that from this point forward you must specifically allow
  282. # particular features to be enabled - so if something's not working as
  283. # you might expect, make sure that you have specifically enabled it
  284. # below.
  285. #
  286.  
  287. #
  288. # This should be changed to whatever you set DocumentRoot to.
  289. #
  290. <Directory "/apache/htdocs">
  291.  
  292. #
  293. # This may also be "None", "All", or any combination of "Indexes",
  294. # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
  295. #
  296. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  297. # doesn't give it to you.
  298. #
  299.     Options Indexes FollowSymLinks MultiViews ExecCGI
  300.  
  301. #
  302. # This controls which options the .htaccess files in directories can
  303. # override. Can also be "All", or any combination of "Options", "FileInfo", 
  304. # "AuthConfig", and "Limit"
  305. #
  306.     AllowOverride None
  307.  
  308. #
  309. # Controls who can get stuff from this server.
  310. #
  311.     Order allow,deny
  312.     Allow from all
  313. </Directory>
  314.  
  315. #
  316. # UserDir: The name of the directory which is appended onto a user's home
  317. # directory if a ~user request is received.
  318. #
  319. # Under Win32, we do not currently try to determine the home directory of
  320. # a Windows login, so a format such as that below needs to be used.  See
  321. # the UserDir documentation for details.
  322. #
  323. <IfModule mod_userdir.c>
  324.     UserDir "/apache/users/"
  325. </IfModule>
  326.  
  327. #
  328. # Control access to UserDir directories.  The following is an example
  329. # for a site where these directories are restricted to read-only.
  330. #
  331. #<Directory "c:/apache/users">
  332. #    AllowOverride FileInfo AuthConfig Limit
  333. #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  334. #    <Limit GET POST OPTIONS PROPFIND>
  335. #        Order allow,deny
  336. #        Allow from all
  337. #    </Limit>
  338. #    <LimitExcept GET POST OPTIONS PROPFIND>
  339. #        Order deny,allow
  340. #        Deny from all
  341. #    </LimitExcept>
  342. #</Directory>
  343.  
  344. #
  345. # DirectoryIndex: Name of the file or files to use as a pre-written HTML
  346. # directory index.  Separate multiple entries with spaces.
  347. #
  348. <IfModule mod_dir.c>
  349.     DirectoryIndex index.html
  350.     DirectoryIndex index.htm
  351.     DirectoryIndex index.php
  352.     DirectoryIndex index.php3
  353.     DirectoryIndex default.html
  354.     DirectoryIndex default.htm
  355.  
  356. </IfModule>
  357.  
  358. #
  359. # AccessFileName: The name of the file to look for in each directory
  360. # for access control information.
  361. #
  362. AccessFileName .htaccess
  363.  
  364. #
  365. # The following lines prevent .htaccess files from being viewed by
  366. # Web clients.  Since .htaccess files often contain authorization
  367. # information, access is disallowed for security reasons.  Comment
  368. # these lines out if you want Web visitors to see the contents of
  369. # .htaccess files.  If you change the AccessFileName directive above,
  370. # be sure to make the corresponding changes here.
  371. #
  372. # Also, folks tend to use names such as .htpasswd for password
  373. # files, so this will protect those as well.
  374. #
  375. <Files ~ "^\.ht">
  376.     Order allow,deny
  377.     Deny from all
  378. </Files>
  379.  
  380. #
  381. # CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
  382. # document that was negotiated on the basis of content. This asks proxy
  383. # servers not to cache the document. Uncommenting the following line disables
  384. # this behavior, and proxies will be allowed to cache the documents.
  385. #
  386. #CacheNegotiatedDocs
  387.  
  388. #
  389. # UseCanonicalName:  (new for 1.3)  With this setting turned on, whenever
  390. # Apache needs to construct a self-referencing URL (a URL that refers back
  391. # to the server the response is coming from) it will use ServerName and
  392. # Port to form a "canonical" name.  With this setting off, Apache will
  393. # use the hostname:port that the client supplied, when possible.  This
  394. # also affects SERVER_NAME and SERVER_PORT in CGI scripts.
  395. #
  396. UseCanonicalName On
  397.  
  398. #
  399. # TypesConfig describes where the mime.types file (or equivalent) is
  400. # to be found.
  401. #
  402. <IfModule mod_mime.c>
  403.     TypesConfig conf/mime.types
  404. </IfModule>
  405.  
  406. #
  407. # DefaultType is the default MIME type the server will use for a document
  408. # if it cannot otherwise determine one, such as from filename extensions.
  409. # If your server contains mostly text or HTML documents, "text/plain" is
  410. # a good value.  If most of your content is binary, such as applications
  411. # or images, you may want to use "application/octet-stream" instead to
  412. # keep browsers from trying to display binary files as though they are
  413. # text.
  414. #
  415. DefaultType text/plain
  416.  
  417. #
  418. # The mod_mime_magic module allows the server to use various hints from the
  419. # contents of the file itself to determine its type.  The MIMEMagicFile
  420. # directive tells the module where the hint definitions are located.
  421. # mod_mime_magic is not part of the default server (you have to add
  422. # it yourself with a LoadModule [see the DSO paragraph in the 'Global
  423. # Environment' section], or recompile the server and include mod_mime_magic
  424. # as part of the configuration), so it's enclosed in an <IfModule> container.
  425. # This means that the MIMEMagicFile directive will only be processed if the
  426. # module is part of the server.
  427. #
  428. <IfModule mod_mime_magic.c>
  429.     MIMEMagicFile conf/magic
  430. </IfModule>
  431.  
  432. #
  433. # HostnameLookups: Log the names of clients or just their IP addresses
  434. # e.g., www.apache.org (on) or 204.62.129.132 (off).
  435. # The default is off because it'd be overall better for the net if people
  436. # had to knowingly turn this feature on, since enabling it means that
  437. # each client request will result in AT LEAST one lookup request to the
  438. # nameserver.
  439. #
  440. HostnameLookups Off
  441.  
  442. #
  443. # ErrorLog: The location of the error log file.
  444. # If you do not specify an ErrorLog directive within a <VirtualHost>
  445. # container, error messages relating to that virtual host will be
  446. # logged here.  If you *do* define an error logfile for a <VirtualHost>
  447. # container, that host's errors will be logged there and not here.
  448. #
  449. ErrorLog logs/error.log
  450.  
  451. #
  452. # LogLevel: Control the number of messages logged to the error.log.
  453. # Possible values include: debug, info, notice, warn, error, crit,
  454. # alert, emerg.
  455. #
  456. LogLevel warn
  457.  
  458. #
  459. # The following directives define some format nicknames for use with
  460. # a CustomLog directive (see below).
  461. #
  462. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  463. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  464. LogFormat "%{Referer}i -> %U" referer
  465. LogFormat "%{User-agent}i" agent
  466.  
  467. #
  468. # The location and format of the access logfile (Common Logfile Format).
  469. # If you do not define any access logfiles within a <VirtualHost>
  470. # container, they will be logged here.  Contrariwise, if you *do*
  471. # define per-<VirtualHost> access logfiles, transactions will be
  472. # logged therein and *not* in this file.
  473. #
  474. CustomLog logs/access.log common
  475.  
  476. #
  477. # If you would like to have agent and referer logfiles, uncomment the
  478. # following directives.
  479. #
  480. #CustomLog logs/referer.log referer
  481. #CustomLog logs/agent.log agent
  482.  
  483. #
  484. # If you prefer a single logfile with access, agent, and referer information
  485. # (Combined Logfile Format) you can use the following directive.
  486. #
  487. #CustomLog logs/access.log combined
  488.  
  489. #
  490. # Optionally add a line containing the server version and virtual host
  491. # name to server-generated pages (error documents, FTP directory listings,
  492. # mod_status and mod_info output etc., but not CGI generated documents).
  493. # Set to "EMail" to also include a mailto: link to the ServerAdmin.
  494. # Set to one of:  On | Off | EMail
  495. #
  496. ServerSignature On
  497.  
  498. # Apache parses all CGI scripts for the shebang line by default.
  499. # This comment line, the first line of the script, consists of the symbols
  500. # pound (#) and exclamation (!) followed by the path of the program that 
  501. # can execute this specific script.  For a perl script, with perl.exe in
  502. # the C:\Program Files\Perl directory, the shebang line should be:
  503.  
  504.    #!c:/program files/perl/perl
  505.  
  506. # Note you _must_not_ indent the actual shebang line, and it must be the
  507. # first line of the file.  Of course, CGI processing must be enabled by 
  508. # the appropriate ScriptAlias or Options ExecCGI directives for the files 
  509. # or directory in question.
  510. #
  511. # However, Apache on Windows allows either the Unix behavior above, or can
  512. # use the Registry to match files by extention.  The command to execute 
  513. # a file of this type is retrieved from the registry by the same method as 
  514. # the Windows Explorer would use to handle double-clicking on a file.
  515. # These script actions can be configured from the Windows Explorer View menu, 
  516. # 'Folder Options', and reviewing the 'File Types' tab.  Clicking the Edit
  517. # button allows you to modify the Actions, of which Apache 1.3 attempts to
  518. # perform the 'Open' Action, and failing that it will try the shebang line.
  519. # This behavior is subject to change in Apache release 2.0.
  520. #
  521. # Each mechanism has it's own specific security weaknesses, from the means
  522. # to run a program you didn't intend the website owner to invoke, and the
  523. # best method is a matter of great debate.
  524. #
  525. # To enable the this Windows specific behavior (and therefore -disable- the
  526. # equivilant Unix behavior), uncomment the following directive:
  527. #
  528. #ScriptInterpreterSource registry
  529. #
  530. # The directive above can be placed in individual <Directory> blocks or the
  531. # .htaccess file, with either the 'registry' (Windows behavior) or 'script' 
  532. # (Unix behavior) option, and will override this server default option.
  533. #
  534.  
  535. #
  536. # Aliases: Add here as many aliases as you need (with no limit). The format is 
  537. # Alias fakename realname
  538. #
  539. <IfModule mod_alias.c>
  540.  
  541.     #
  542.     # Note that if you include a trailing / on fakename then the server will
  543.     # require it to be present in the URL.  So "/icons" isn't aliased in this
  544.     # example, only "/icons/"..
  545.     #
  546.     Alias /icons/ "/apache/icons/"
  547.  
  548.     <Directory "/apache/icons">
  549.         Options Indexes MultiViews
  550.         AllowOverride None
  551.         Order allow,deny
  552.         Allow from all
  553.     </Directory>
  554.  
  555.     #
  556.     # ScriptAlias: This controls which directories contain server scripts.
  557.     # ScriptAliases are essentially the same as Aliases, except that
  558.     # documents in the realname directory are treated as applications and
  559.     # run by the server when requested rather than as documents sent to the client.
  560.     # The same rules about trailing "/" apply to ScriptAlias directives as to
  561.     # Alias.
  562.     #
  563.     ScriptAlias /cgi-bin/ "/apache/cgi-bin/"
  564.     ScriptAlias /php/ "/apache/php/" 
  565.  
  566.     #
  567.     # "c:/apache/cgi-bin" should be changed to whatever your ScriptAliased
  568.     # CGI directory exists, if you have that configured.
  569.     #
  570.     <Directory "/apache/cgi-bin">
  571.         AllowOverride None
  572.         Options None
  573.         Order allow,deny
  574.         Allow from all
  575.     </Directory>
  576.  
  577. </IfModule>
  578. # End of aliases.
  579.  
  580. #
  581. # Redirect allows you to tell clients about documents which used to exist in
  582. # your server's namespace, but do not anymore. This allows you to tell the
  583. # clients where to look for the relocated document.
  584. # Format: Redirect old-URI new-URL
  585. #
  586.  
  587. #
  588. # Directives controlling the display of server-generated directory listings.
  589. #
  590. <IfModule mod_autoindex.c>
  591.  
  592.     #
  593.     # FancyIndexing is whether you want fancy directory indexing or standard
  594.     #
  595.     IndexOptions FancyIndexing
  596.  
  597.     #
  598.     # AddIcon* directives tell the server which icon to show for different
  599.     # files or filename extensions.  These are only displayed for
  600.     # FancyIndexed directories.
  601.     #
  602.     AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
  603.  
  604.     AddIconByType (TXT,/icons/text.gif) text/*
  605.     AddIconByType (IMG,/icons/image2.gif) image/*
  606.     AddIconByType (SND,/icons/sound2.gif) audio/*
  607.     AddIconByType (VID,/icons/movie.gif) video/*
  608.  
  609.     AddIcon /icons/binary.gif .bin .exe
  610.     AddIcon /icons/binhex.gif .hqx
  611.     AddIcon /icons/tar.gif .tar
  612.     AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
  613.     AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
  614.     AddIcon /icons/a.gif .ps .ai .eps
  615.     AddIcon /icons/layout.gif .html .shtml .htm .pdf
  616.     AddIcon /icons/text.gif .txt
  617.     AddIcon /icons/c.gif .c
  618.     AddIcon /icons/p.gif .pl .py
  619.     AddIcon /icons/f.gif .for
  620.     AddIcon /icons/dvi.gif .dvi
  621.     AddIcon /icons/uuencoded.gif .uu
  622.     AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
  623.     AddIcon /icons/tex.gif .tex
  624.     AddIcon /icons/bomb.gif core
  625.  
  626.     AddIcon /icons/back.gif ..
  627.     AddIcon /icons/hand.right.gif README
  628.     AddIcon /icons/folder.gif ^^DIRECTORY^^
  629.     AddIcon /icons/blank.gif ^^BLANKICON^^
  630.  
  631.     #
  632.     # DefaultIcon is which icon to show for files which do not have an icon
  633.     # explicitly set.
  634.     #
  635.     DefaultIcon /icons/unknown.gif
  636.  
  637.     #
  638.     # AddDescription allows you to place a short description after a file in
  639.     # server-generated indexes.  These are only displayed for FancyIndexed
  640.     # directories.
  641.     # Format: AddDescription "description" filename
  642.     #
  643.     #AddDescription "GZIP compressed document" .gz
  644.     #AddDescription "tar archive" .tar
  645.     #AddDescription "GZIP compressed tar archive" .tgz
  646.  
  647.     #
  648.     # ReadmeName is the name of the README file the server will look for by
  649.     # default, and append to directory listings.
  650.     #
  651.     # HeaderName is the name of a file which should be prepended to
  652.     # directory indexes. 
  653.     #
  654.     # If MultiViews are amongst the Options in effect, the server will
  655.     # first look for name.html and include it if found.  If name.html
  656.     # doesn't exist, the server will then look for name.txt and include
  657.     # it as plaintext if found.
  658.     #
  659.     ReadmeName README
  660.     HeaderName HEADER
  661.  
  662.     #
  663.     # IndexIgnore is a set of filenames which directory indexing should ignore
  664.     # and not include in the listing.  Shell-style wildcarding is permitted.
  665.     #
  666.     IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
  667.  
  668. </IfModule>
  669. # End of indexing directives.
  670.  
  671. #
  672. # Document types.
  673. #
  674. <IfModule mod_mime.c>
  675.  
  676.     #
  677.     # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
  678.     # information on the fly. Note: Not all browsers support this.
  679.     # Despite the name similarity, the following Add* directives have nothing
  680.     # to do with the FancyIndexing customization directives above.
  681.     #
  682.     AddEncoding x-compress Z
  683.     AddEncoding x-gzip gz tgz
  684.     #
  685.     # AddLanguage allows you to specify the language of a document. You can
  686.     # then use content negotiation to give a browser a file in a language
  687.     # it can understand.
  688.     #
  689.     # Note 1: The suffix does not have to be the same as the language
  690.     # keyword --- those with documents in Polish (whose net-standard
  691.     # language code is pl) may wish to use "AddLanguage pl .po" to
  692.     # avoid the ambiguity with the common suffix for perl scripts.
  693.     #
  694.     # Note 2: The example entries below illustrate that in quite
  695.     # some cases the two character 'Language' abbriviation is not
  696.     # identical to the two character 'Country' code for its country,
  697.     # E.g. 'Danmark/dk' versus 'Danish/da'.
  698.     #
  699.     # Note 3: In the case of 'ltz' we violate the RFC by using a three char
  700.     # specifier. But there is 'work in progress' to fix this and get
  701.     # the reference data for rfc1766 cleaned up.
  702.     #
  703.     # Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
  704.     # French (fr) - German (de) - Greek-Modern (el)
  705.     # Italian (it) - Korean (kr) - Norwegian (no)
  706.     # Portugese (pt) - Luxembourgeois* (ltz)
  707.     # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
  708.     # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
  709.     # Russian (ru)
  710.     #
  711.     AddLanguage da .dk
  712.     AddLanguage nl .nl
  713.     AddLanguage en .en
  714.     AddLanguage et .ee
  715.     AddLanguage fr .fr
  716.     AddLanguage de .de
  717.     AddLanguage el .el
  718.     AddLanguage he .he
  719.     AddCharset ISO-8859-8 .iso8859-8
  720.     AddLanguage it .it
  721.     AddLanguage ja .ja
  722.     AddCharset ISO-2022-JP .jis
  723.     AddLanguage kr .kr
  724.     AddCharset ISO-2022-KR .iso-kr
  725.     AddLanguage no .no
  726.     AddLanguage pl .po
  727.     AddCharset ISO-8859-2 .iso-pl
  728.     AddLanguage pt .pt
  729.     AddLanguage pt-br .pt-br
  730.     AddLanguage ltz .lu
  731.     AddLanguage ca .ca
  732.     AddLanguage es .es
  733.     AddLanguage sv .se
  734.     AddLanguage cz .cz
  735.     AddLanguage ru .ru
  736.     AddLanguage tw .tw
  737.     AddCharset Big5         .Big5    .big5
  738.     AddCharset WINDOWS-1251 .cp-1251
  739.     AddCharset CP866        .cp866
  740.     AddCharset ISO-8859-5   .iso-ru
  741.     AddCharset KOI8-R       .koi8-r
  742.     AddCharset UCS-2        .ucs2
  743.     AddCharset UCS-4        .ucs4
  744.     AddCharset UTF-8        .utf8
  745.  
  746.     # LanguagePriority allows you to give precedence to some languages
  747.     # in case of a tie during content negotiation.
  748.     #
  749.     # Just list the languages in decreasing order of preference. We have
  750.     # more or less alphabetized them here. You probably want to change this.
  751.     #
  752.     <IfModule mod_negotiation.c>
  753.         LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
  754.     </IfModule>
  755.  
  756.     #
  757.     # AddType allows you to tweak mime.types without actually editing it, or to
  758.     # make certain files to be certain types.
  759.     #
  760.     # For example, the PHP 3.x module (not part of the Apache distribution - see
  761.     # http://www.php.net) will typically use:
  762.     #
  763.     #AddType application/x-httpd-php3 .php3
  764.     #AddType application/x-httpd-php3-source .phps
  765.     #
  766.     # And for PHP 4.x, use:
  767.     #
  768.     AddType application/x-httpd-php .php
  769.     AddType application/x-httpd-php .php3
  770.     AddType application/x-httpd-php .php4
  771.     AddType application/x-httpd-php-source .phps
  772.  
  773.     AddType application/x-tar .tgz
  774.  
  775.     #
  776.     # AddHandler allows you to map certain file extensions to "handlers",
  777.     # actions unrelated to filetype. These can be either built into the server
  778.     # or added with the Action command (see below)
  779.     #
  780.     # If you want to use server side includes, or CGI outside
  781.     # ScriptAliased directories, uncomment the following lines.
  782.     #
  783.     # To use CGI scripts:
  784.     #
  785.     AddHandler cgi-script .cgi
  786.     AddHandler cgi-script .pl
  787.     #
  788.     # To use server-parsed HTML files
  789.     #
  790.     #AddType text/html .shtml
  791.     #AddHandler server-parsed .shtml
  792.  
  793.     #
  794.     # Uncomment the following line to enable Apache's send-asis HTTP file
  795.     # feature
  796.     #
  797.     #AddHandler send-as-is asis
  798.  
  799.     #
  800.     # If you wish to use server-parsed imagemap files, use
  801.     #
  802.     #AddHandler imap-file map
  803.  
  804.     #
  805.     # To enable type maps, you might want to use
  806.     #
  807.     #AddHandler type-map var
  808.  
  809. </IfModule>
  810. # End of document types.
  811.  
  812. #
  813. # Action lets you define media types that will execute a script whenever
  814. # a matching file is called. This eliminates the need for repeated URL
  815. # pathnames for oft-used CGI file processors.
  816. # Format: Action media/type /cgi-script/location
  817. # Format: Action handler-name /cgi-script/location
  818. #
  819.  
  820. Action application/x-httpd-php /php/php.exe
  821.  
  822.  
  823. #
  824. # MetaDir: specifies the name of the directory in which Apache can find
  825. # meta information files. These files contain additional HTTP headers
  826. # to include when sending the document
  827. #
  828. #MetaDir .web
  829.  
  830. #
  831. # MetaSuffix: specifies the file name suffix for the file containing the
  832. # meta information.
  833. #
  834. #MetaSuffix .meta
  835.  
  836. #
  837. # Customizable error response (Apache style)
  838. #  these come in three flavors
  839. #
  840. #    1) plain text
  841. #ErrorDocument 500 "The server made a boo boo.
  842. #  n.b.  the single leading (") marks it as text, it does not get output
  843. #
  844. #    2) local redirects
  845. #ErrorDocument 404 /missing.html
  846. #  to redirect to local URL /missing.html
  847. #ErrorDocument 404 /cgi-bin/missing_handler.pl
  848. #  N.B.: You can redirect to a script or a document using server-side-includes.
  849. #
  850. #    3) external redirects
  851. #ErrorDocument 402 http://some.other_server.com/subscription_info.html
  852. #  N.B.: Many of the environment variables associated with the original
  853. #  request will *not* be available to such a script.
  854.  
  855. #
  856. # Customize behaviour based on the browser
  857. #
  858. <IfModule mod_setenvif.c>
  859.  
  860.     #
  861.     # The following directives modify normal HTTP response behavior.
  862.     # The first directive disables keepalive for Netscape 2.x and browsers that
  863.     # spoof it. There are known problems with these browser implementations.
  864.     # The second directive is for Microsoft Internet Explorer 4.0b2
  865.     # which has a broken HTTP/1.1 implementation and does not properly
  866.     # support keepalive when it is used on 301 or 302 (redirect) responses.
  867.     #
  868.     BrowserMatch "Mozilla/2" nokeepalive
  869.     BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
  870.  
  871.     #
  872.     # The following directive disables HTTP/1.1 responses to browsers which
  873.     # are in violation of the HTTP/1.0 spec by not being able to grok a
  874.     # basic 1.1 response.
  875.     #
  876.     BrowserMatch "RealPlayer 4\.0" force-response-1.0
  877.     BrowserMatch "Java/1\.0" force-response-1.0
  878.     BrowserMatch "JDK/1\.0" force-response-1.0
  879.  
  880. </IfModule>
  881. # End of browser customization directives
  882.  
  883. #
  884. # Allow server status reports, with the URL of http://servername/server-status
  885. # Change the ".your_domain.com" to match your domain to enable.
  886. #
  887. #<Location /server-status>
  888. #    SetHandler server-status
  889. #    Order deny,allow
  890. #    Deny from all
  891. #    Allow from .your_domain.com
  892. #</Location>
  893.  
  894. #
  895. # Allow remote server configuration reports, with the URL of
  896. # http://servername/server-info (requires that mod_info.c be loaded).
  897. # Change the ".your_domain.com" to match your domain to enable.
  898. #
  899. #<Location /server-info>
  900. #    SetHandler server-info
  901. #    Order deny,allow
  902. #    Deny from all
  903. #    Allow from .your_domain.com
  904. #</Location>
  905.  
  906. #
  907. # There have been reports of people trying to abuse an old bug from pre-1.1
  908. # days.  This bug involved a CGI script distributed as a part of Apache.
  909. # By uncommenting these lines you can redirect these attacks to a logging 
  910. # script on phf.apache.org.  Or, you can record them yourself, using the script
  911. # support/phf_abuse_log.cgi.
  912. #
  913. #<Location /cgi-bin/phf*>
  914. #    Deny from all
  915. #    ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
  916. #</Location>
  917.  
  918. #
  919. # Proxy Server directives. Uncomment the following lines to
  920. # enable the proxy server:
  921. #
  922. #<IfModule mod_proxy.c>
  923. #    ProxyRequests On
  924.  
  925. #    <Directory proxy:*>
  926. #        Order deny,allow
  927. #        Deny from all
  928. #        Allow from .your_domain.com
  929. #    </Directory>
  930.  
  931.     #
  932.     # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  933.     # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  934.     # Set to one of: Off | On | Full | Block
  935.     #
  936. #    ProxyVia On
  937.  
  938.     #
  939.     # To enable the cache as well, edit and uncomment the following lines:
  940.     # (no cacheing without CacheRoot)
  941.     #
  942. #    CacheRoot "c:/apache/proxy"
  943. #    CacheSize 5
  944. #    CacheGcInterval 4
  945. #    CacheMaxExpire 24
  946. #    CacheLastModifiedFactor 0.1
  947. #    CacheDefaultExpire 1
  948. #    NoCache a_domain.com another_domain.edu joes.garage_sale.com
  949.  
  950. #</IfModule>
  951. # End of proxy directives.
  952.  
  953. ### Section 3: Virtual Hosts
  954. #
  955. # VirtualHost: If you want to maintain multiple domains/hostnames on your
  956. # machine you can setup VirtualHost containers for them. Most configurations
  957. # use only name-based virtual hosts so the server doesn't need to worry about
  958. # IP addresses. This is indicated by the asterisks in the directives below.
  959. #
  960. # Please see the documentation at <URL:http://www.apache.org/docs/vhosts/>
  961. # for further details before you try to setup virtual hosts.
  962. #
  963. # You may use the command line option '-S' to verify your virtual host
  964. # configuration.
  965.  
  966. #
  967. # Use name-based virtual hosting.
  968. #
  969. #NameVirtualHost *
  970.  
  971. #
  972. # VirtualHost example:
  973. # Almost any Apache directive may go into a VirtualHost container.
  974. # The first VirtualHost section is used for requests without a known
  975. # server name.
  976. #
  977. #<VirtualHost *>
  978. #    ServerAdmin webmaster@dummy-host.example.com
  979. #    DocumentRoot /www/docs/dummy-host.example.com
  980. #    ServerName dummy-host.example.com
  981. #    ErrorLog logs/dummy-host.example.com-error_log
  982. #    CustomLog logs/dummy-host.example.com-access_log common
  983. #</VirtualHost>
  984.