home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / conf / httpd-perl-works.conf < prev    next >
Text File  |  2001-01-21  |  35KB  |  973 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 "c:/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 "c:/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 "c:/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 "c:/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. </IfModule>
  351.  
  352. #
  353. # AccessFileName: The name of the file to look for in each directory
  354. # for access control information.
  355. #
  356. AccessFileName .htaccess
  357.  
  358. #
  359. # The following lines prevent .htaccess files from being viewed by
  360. # Web clients.  Since .htaccess files often contain authorization
  361. # information, access is disallowed for security reasons.  Comment
  362. # these lines out if you want Web visitors to see the contents of
  363. # .htaccess files.  If you change the AccessFileName directive above,
  364. # be sure to make the corresponding changes here.
  365. #
  366. # Also, folks tend to use names such as .htpasswd for password
  367. # files, so this will protect those as well.
  368. #
  369. <Files ~ "^\.ht">
  370.     Order allow,deny
  371.     Deny from all
  372. </Files>
  373.  
  374. #
  375. # CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
  376. # document that was negotiated on the basis of content. This asks proxy
  377. # servers not to cache the document. Uncommenting the following line disables
  378. # this behavior, and proxies will be allowed to cache the documents.
  379. #
  380. #CacheNegotiatedDocs
  381.  
  382. #
  383. # UseCanonicalName:  (new for 1.3)  With this setting turned on, whenever
  384. # Apache needs to construct a self-referencing URL (a URL that refers back
  385. # to the server the response is coming from) it will use ServerName and
  386. # Port to form a "canonical" name.  With this setting off, Apache will
  387. # use the hostname:port that the client supplied, when possible.  This
  388. # also affects SERVER_NAME and SERVER_PORT in CGI scripts.
  389. #
  390. UseCanonicalName On
  391.  
  392. #
  393. # TypesConfig describes where the mime.types file (or equivalent) is
  394. # to be found.
  395. #
  396. <IfModule mod_mime.c>
  397.     TypesConfig conf/mime.types
  398. </IfModule>
  399.  
  400. #
  401. # DefaultType is the default MIME type the server will use for a document
  402. # if it cannot otherwise determine one, such as from filename extensions.
  403. # If your server contains mostly text or HTML documents, "text/plain" is
  404. # a good value.  If most of your content is binary, such as applications
  405. # or images, you may want to use "application/octet-stream" instead to
  406. # keep browsers from trying to display binary files as though they are
  407. # text.
  408. #
  409. DefaultType text/plain
  410.  
  411. #
  412. # The mod_mime_magic module allows the server to use various hints from the
  413. # contents of the file itself to determine its type.  The MIMEMagicFile
  414. # directive tells the module where the hint definitions are located.
  415. # mod_mime_magic is not part of the default server (you have to add
  416. # it yourself with a LoadModule [see the DSO paragraph in the 'Global
  417. # Environment' section], or recompile the server and include mod_mime_magic
  418. # as part of the configuration), so it's enclosed in an <IfModule> container.
  419. # This means that the MIMEMagicFile directive will only be processed if the
  420. # module is part of the server.
  421. #
  422. <IfModule mod_mime_magic.c>
  423.     MIMEMagicFile conf/magic
  424. </IfModule>
  425.  
  426. #
  427. # HostnameLookups: Log the names of clients or just their IP addresses
  428. # e.g., www.apache.org (on) or 204.62.129.132 (off).
  429. # The default is off because it'd be overall better for the net if people
  430. # had to knowingly turn this feature on, since enabling it means that
  431. # each client request will result in AT LEAST one lookup request to the
  432. # nameserver.
  433. #
  434. HostnameLookups Off
  435.  
  436. #
  437. # ErrorLog: The location of the error log file.
  438. # If you do not specify an ErrorLog directive within a <VirtualHost>
  439. # container, error messages relating to that virtual host will be
  440. # logged here.  If you *do* define an error logfile for a <VirtualHost>
  441. # container, that host's errors will be logged there and not here.
  442. #
  443. ErrorLog logs/error.log
  444.  
  445. #
  446. # LogLevel: Control the number of messages logged to the error.log.
  447. # Possible values include: debug, info, notice, warn, error, crit,
  448. # alert, emerg.
  449. #
  450. LogLevel warn
  451.  
  452. #
  453. # The following directives define some format nicknames for use with
  454. # a CustomLog directive (see below).
  455. #
  456. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  457. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  458. LogFormat "%{Referer}i -> %U" referer
  459. LogFormat "%{User-agent}i" agent
  460.  
  461. #
  462. # The location and format of the access logfile (Common Logfile Format).
  463. # If you do not define any access logfiles within a <VirtualHost>
  464. # container, they will be logged here.  Contrariwise, if you *do*
  465. # define per-<VirtualHost> access logfiles, transactions will be
  466. # logged therein and *not* in this file.
  467. #
  468. CustomLog logs/access.log common
  469.  
  470. #
  471. # If you would like to have agent and referer logfiles, uncomment the
  472. # following directives.
  473. #
  474. #CustomLog logs/referer.log referer
  475. #CustomLog logs/agent.log agent
  476.  
  477. #
  478. # If you prefer a single logfile with access, agent, and referer information
  479. # (Combined Logfile Format) you can use the following directive.
  480. #
  481. #CustomLog logs/access.log combined
  482.  
  483. #
  484. # Optionally add a line containing the server version and virtual host
  485. # name to server-generated pages (error documents, FTP directory listings,
  486. # mod_status and mod_info output etc., but not CGI generated documents).
  487. # Set to "EMail" to also include a mailto: link to the ServerAdmin.
  488. # Set to one of:  On | Off | EMail
  489. #
  490. ServerSignature On
  491.  
  492. # Apache parses all CGI scripts for the shebang line by default.
  493. # This comment line, the first line of the script, consists of the symbols
  494. # pound (#) and exclamation (!) followed by the path of the program that 
  495. # can execute this specific script.  For a perl script, with perl.exe in
  496. # the C:\Program Files\Perl directory, the shebang line should be:
  497.  
  498.    #!c:/program files/perl/perl
  499.  
  500. # Note you _must_not_ indent the actual shebang line, and it must be the
  501. # first line of the file.  Of course, CGI processing must be enabled by 
  502. # the appropriate ScriptAlias or Options ExecCGI directives for the files 
  503. # or directory in question.
  504. #
  505. # However, Apache on Windows allows either the Unix behavior above, or can
  506. # use the Registry to match files by extention.  The command to execute 
  507. # a file of this type is retrieved from the registry by the same method as 
  508. # the Windows Explorer would use to handle double-clicking on a file.
  509. # These script actions can be configured from the Windows Explorer View menu, 
  510. # 'Folder Options', and reviewing the 'File Types' tab.  Clicking the Edit
  511. # button allows you to modify the Actions, of which Apache 1.3 attempts to
  512. # perform the 'Open' Action, and failing that it will try the shebang line.
  513. # This behavior is subject to change in Apache release 2.0.
  514. #
  515. # Each mechanism has it's own specific security weaknesses, from the means
  516. # to run a program you didn't intend the website owner to invoke, and the
  517. # best method is a matter of great debate.
  518. #
  519. # To enable the this Windows specific behavior (and therefore -disable- the
  520. # equivilant Unix behavior), uncomment the following directive:
  521. #
  522. #ScriptInterpreterSource registry
  523. #
  524. # The directive above can be placed in individual <Directory> blocks or the
  525. # .htaccess file, with either the 'registry' (Windows behavior) or 'script' 
  526. # (Unix behavior) option, and will override this server default option.
  527. #
  528.  
  529. #
  530. # Aliases: Add here as many aliases as you need (with no limit). The format is 
  531. # Alias fakename realname
  532. #
  533. <IfModule mod_alias.c>
  534.  
  535.     #
  536.     # Note that if you include a trailing / on fakename then the server will
  537.     # require it to be present in the URL.  So "/icons" isn't aliased in this
  538.     # example, only "/icons/"..
  539.     #
  540.     Alias /icons/ "c:/apache/icons/"
  541.  
  542.     <Directory "c:/apache/icons">
  543.         Options Indexes MultiViews
  544.         AllowOverride None
  545.         Order allow,deny
  546.         Allow from all
  547.     </Directory>
  548.  
  549.     #
  550.     # ScriptAlias: This controls which directories contain server scripts.
  551.     # ScriptAliases are essentially the same as Aliases, except that
  552.     # documents in the realname directory are treated as applications and
  553.     # run by the server when requested rather than as documents sent to the client.
  554.     # The same rules about trailing "/" apply to ScriptAlias directives as to
  555.     # Alias.
  556.     #
  557.     ScriptAlias /cgi-bin/ "c:/apache/cgi-bin/"
  558.  
  559.     #
  560.     # "c:/apache/cgi-bin" should be changed to whatever your ScriptAliased
  561.     # CGI directory exists, if you have that configured.
  562.     #
  563.     <Directory "c:/apache/cgi-bin">
  564.         AllowOverride None
  565.         Options None
  566.         Order allow,deny
  567.         Allow from all
  568.     </Directory>
  569.  
  570. </IfModule>
  571. # End of aliases.
  572.  
  573. #
  574. # Redirect allows you to tell clients about documents which used to exist in
  575. # your server's namespace, but do not anymore. This allows you to tell the
  576. # clients where to look for the relocated document.
  577. # Format: Redirect old-URI new-URL
  578. #
  579.  
  580. #
  581. # Directives controlling the display of server-generated directory listings.
  582. #
  583. <IfModule mod_autoindex.c>
  584.  
  585.     #
  586.     # FancyIndexing is whether you want fancy directory indexing or standard
  587.     #
  588.     IndexOptions FancyIndexing
  589.  
  590.     #
  591.     # AddIcon* directives tell the server which icon to show for different
  592.     # files or filename extensions.  These are only displayed for
  593.     # FancyIndexed directories.
  594.     #
  595.     AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
  596.  
  597.     AddIconByType (TXT,/icons/text.gif) text/*
  598.     AddIconByType (IMG,/icons/image2.gif) image/*
  599.     AddIconByType (SND,/icons/sound2.gif) audio/*
  600.     AddIconByType (VID,/icons/movie.gif) video/*
  601.  
  602.     AddIcon /icons/binary.gif .bin .exe
  603.     AddIcon /icons/binhex.gif .hqx
  604.     AddIcon /icons/tar.gif .tar
  605.     AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
  606.     AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
  607.     AddIcon /icons/a.gif .ps .ai .eps
  608.     AddIcon /icons/layout.gif .html .shtml .htm .pdf
  609.     AddIcon /icons/text.gif .txt
  610.     AddIcon /icons/c.gif .c
  611.     AddIcon /icons/p.gif .pl .py
  612.     AddIcon /icons/f.gif .for
  613.     AddIcon /icons/dvi.gif .dvi
  614.     AddIcon /icons/uuencoded.gif .uu
  615.     AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
  616.     AddIcon /icons/tex.gif .tex
  617.     AddIcon /icons/bomb.gif core
  618.  
  619.     AddIcon /icons/back.gif ..
  620.     AddIcon /icons/hand.right.gif README
  621.     AddIcon /icons/folder.gif ^^DIRECTORY^^
  622.     AddIcon /icons/blank.gif ^^BLANKICON^^
  623.  
  624.     #
  625.     # DefaultIcon is which icon to show for files which do not have an icon
  626.     # explicitly set.
  627.     #
  628.     DefaultIcon /icons/unknown.gif
  629.  
  630.     #
  631.     # AddDescription allows you to place a short description after a file in
  632.     # server-generated indexes.  These are only displayed for FancyIndexed
  633.     # directories.
  634.     # Format: AddDescription "description" filename
  635.     #
  636.     #AddDescription "GZIP compressed document" .gz
  637.     #AddDescription "tar archive" .tar
  638.     #AddDescription "GZIP compressed tar archive" .tgz
  639.  
  640.     #
  641.     # ReadmeName is the name of the README file the server will look for by
  642.     # default, and append to directory listings.
  643.     #
  644.     # HeaderName is the name of a file which should be prepended to
  645.     # directory indexes. 
  646.     #
  647.     # If MultiViews are amongst the Options in effect, the server will
  648.     # first look for name.html and include it if found.  If name.html
  649.     # doesn't exist, the server will then look for name.txt and include
  650.     # it as plaintext if found.
  651.     #
  652.     ReadmeName README
  653.     HeaderName HEADER
  654.  
  655.     #
  656.     # IndexIgnore is a set of filenames which directory indexing should ignore
  657.     # and not include in the listing.  Shell-style wildcarding is permitted.
  658.     #
  659.     IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
  660.  
  661. </IfModule>
  662. # End of indexing directives.
  663.  
  664. #
  665. # Document types.
  666. #
  667. <IfModule mod_mime.c>
  668.  
  669.     #
  670.     # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
  671.     # information on the fly. Note: Not all browsers support this.
  672.     # Despite the name similarity, the following Add* directives have nothing
  673.     # to do with the FancyIndexing customization directives above.
  674.     #
  675.     AddEncoding x-compress Z
  676.     AddEncoding x-gzip gz tgz
  677.     #
  678.     # AddLanguage allows you to specify the language of a document. You can
  679.     # then use content negotiation to give a browser a file in a language
  680.     # it can understand.
  681.     #
  682.     # Note 1: The suffix does not have to be the same as the language
  683.     # keyword --- those with documents in Polish (whose net-standard
  684.     # language code is pl) may wish to use "AddLanguage pl .po" to
  685.     # avoid the ambiguity with the common suffix for perl scripts.
  686.     #
  687.     # Note 2: The example entries below illustrate that in quite
  688.     # some cases the two character 'Language' abbriviation is not
  689.     # identical to the two character 'Country' code for its country,
  690.     # E.g. 'Danmark/dk' versus 'Danish/da'.
  691.     #
  692.     # Note 3: In the case of 'ltz' we violate the RFC by using a three char
  693.     # specifier. But there is 'work in progress' to fix this and get
  694.     # the reference data for rfc1766 cleaned up.
  695.     #
  696.     # Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
  697.     # French (fr) - German (de) - Greek-Modern (el)
  698.     # Italian (it) - Korean (kr) - Norwegian (no)
  699.     # Portugese (pt) - Luxembourgeois* (ltz)
  700.     # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
  701.     # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
  702.     # Russian (ru)
  703.     #
  704.     AddLanguage da .dk
  705.     AddLanguage nl .nl
  706.     AddLanguage en .en
  707.     AddLanguage et .ee
  708.     AddLanguage fr .fr
  709.     AddLanguage de .de
  710.     AddLanguage el .el
  711.     AddLanguage he .he
  712.     AddCharset ISO-8859-8 .iso8859-8
  713.     AddLanguage it .it
  714.     AddLanguage ja .ja
  715.     AddCharset ISO-2022-JP .jis
  716.     AddLanguage kr .kr
  717.     AddCharset ISO-2022-KR .iso-kr
  718.     AddLanguage no .no
  719.     AddLanguage pl .po
  720.     AddCharset ISO-8859-2 .iso-pl
  721.     AddLanguage pt .pt
  722.     AddLanguage pt-br .pt-br
  723.     AddLanguage ltz .lu
  724.     AddLanguage ca .ca
  725.     AddLanguage es .es
  726.     AddLanguage sv .se
  727.     AddLanguage cz .cz
  728.     AddLanguage ru .ru
  729.     AddLanguage tw .tw
  730.     AddCharset Big5         .Big5    .big5
  731.     AddCharset WINDOWS-1251 .cp-1251
  732.     AddCharset CP866        .cp866
  733.     AddCharset ISO-8859-5   .iso-ru
  734.     AddCharset KOI8-R       .koi8-r
  735.     AddCharset UCS-2        .ucs2
  736.     AddCharset UCS-4        .ucs4
  737.     AddCharset UTF-8        .utf8
  738.  
  739.     # LanguagePriority allows you to give precedence to some languages
  740.     # in case of a tie during content negotiation.
  741.     #
  742.     # Just list the languages in decreasing order of preference. We have
  743.     # more or less alphabetized them here. You probably want to change this.
  744.     #
  745.     <IfModule mod_negotiation.c>
  746.         LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
  747.     </IfModule>
  748.  
  749.     #
  750.     # AddType allows you to tweak mime.types without actually editing it, or to
  751.     # make certain files to be certain types.
  752.     #
  753.     # For example, the PHP 3.x module (not part of the Apache distribution - see
  754.     # http://www.php.net) will typically use:
  755.     #
  756.     #AddType application/x-httpd-php3 .php3
  757.     #AddType application/x-httpd-php3-source .phps
  758.     #
  759.     # And for PHP 4.x, use:
  760.     #
  761.     #AddType application/x-httpd-php .php
  762.     #AddType application/x-httpd-php-source .phps
  763.  
  764.     AddType application/x-tar .tgz
  765.  
  766.     #
  767.     # AddHandler allows you to map certain file extensions to "handlers",
  768.     # actions unrelated to filetype. These can be either built into the server
  769.     # or added with the Action command (see below)
  770.     #
  771.     # If you want to use server side includes, or CGI outside
  772.     # ScriptAliased directories, uncomment the following lines.
  773.     #
  774.     # To use CGI scripts:
  775.     #
  776.     AddHandler cgi-script .cgi
  777.     AddHandler cgi-script .pl
  778.     #
  779.     # To use server-parsed HTML files
  780.     #
  781.     #AddType text/html .shtml
  782.     #AddHandler server-parsed .shtml
  783.  
  784.     #
  785.     # Uncomment the following line to enable Apache's send-asis HTTP file
  786.     # feature
  787.     #
  788.     #AddHandler send-as-is asis
  789.  
  790.     #
  791.     # If you wish to use server-parsed imagemap files, use
  792.     #
  793.     #AddHandler imap-file map
  794.  
  795.     #
  796.     # To enable type maps, you might want to use
  797.     #
  798.     #AddHandler type-map var
  799.  
  800. </IfModule>
  801. # End of document types.
  802.  
  803. #
  804. # Action lets you define media types that will execute a script whenever
  805. # a matching file is called. This eliminates the need for repeated URL
  806. # pathnames for oft-used CGI file processors.
  807. # Format: Action media/type /cgi-script/location
  808. # Format: Action handler-name /cgi-script/location
  809. #
  810.  
  811. #
  812. # MetaDir: specifies the name of the directory in which Apache can find
  813. # meta information files. These files contain additional HTTP headers
  814. # to include when sending the document
  815. #
  816. #MetaDir .web
  817.  
  818. #
  819. # MetaSuffix: specifies the file name suffix for the file containing the
  820. # meta information.
  821. #
  822. #MetaSuffix .meta
  823.  
  824. #
  825. # Customizable error response (Apache style)
  826. #  these come in three flavors
  827. #
  828. #    1) plain text
  829. #ErrorDocument 500 "The server made a boo boo.
  830. #  n.b.  the single leading (") marks it as text, it does not get output
  831. #
  832. #    2) local redirects
  833. #ErrorDocument 404 /missing.html
  834. #  to redirect to local URL /missing.html
  835. #ErrorDocument 404 /cgi-bin/missing_handler.pl
  836. #  N.B.: You can redirect to a script or a document using server-side-includes.
  837. #
  838. #    3) external redirects
  839. #ErrorDocument 402 http://some.other_server.com/subscription_info.html
  840. #  N.B.: Many of the environment variables associated with the original
  841. #  request will *not* be available to such a script.
  842.  
  843. #
  844. # Customize behaviour based on the browser
  845. #
  846. <IfModule mod_setenvif.c>
  847.  
  848.     #
  849.     # The following directives modify normal HTTP response behavior.
  850.     # The first directive disables keepalive for Netscape 2.x and browsers that
  851.     # spoof it. There are known problems with these browser implementations.
  852.     # The second directive is for Microsoft Internet Explorer 4.0b2
  853.     # which has a broken HTTP/1.1 implementation and does not properly
  854.     # support keepalive when it is used on 301 or 302 (redirect) responses.
  855.     #
  856.     BrowserMatch "Mozilla/2" nokeepalive
  857.     BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
  858.  
  859.     #
  860.     # The following directive disables HTTP/1.1 responses to browsers which
  861.     # are in violation of the HTTP/1.0 spec by not being able to grok a
  862.     # basic 1.1 response.
  863.     #
  864.     BrowserMatch "RealPlayer 4\.0" force-response-1.0
  865.     BrowserMatch "Java/1\.0" force-response-1.0
  866.     BrowserMatch "JDK/1\.0" force-response-1.0
  867.  
  868. </IfModule>
  869. # End of browser customization directives
  870.  
  871. #
  872. # Allow server status reports, with the URL of http://servername/server-status
  873. # Change the ".your_domain.com" to match your domain to enable.
  874. #
  875. #<Location /server-status>
  876. #    SetHandler server-status
  877. #    Order deny,allow
  878. #    Deny from all
  879. #    Allow from .your_domain.com
  880. #</Location>
  881.  
  882. #
  883. # Allow remote server configuration reports, with the URL of
  884. # http://servername/server-info (requires that mod_info.c be loaded).
  885. # Change the ".your_domain.com" to match your domain to enable.
  886. #
  887. #<Location /server-info>
  888. #    SetHandler server-info
  889. #    Order deny,allow
  890. #    Deny from all
  891. #    Allow from .your_domain.com
  892. #</Location>
  893.  
  894. #
  895. # There have been reports of people trying to abuse an old bug from pre-1.1
  896. # days.  This bug involved a CGI script distributed as a part of Apache.
  897. # By uncommenting these lines you can redirect these attacks to a logging 
  898. # script on phf.apache.org.  Or, you can record them yourself, using the script
  899. # support/phf_abuse_log.cgi.
  900. #
  901. #<Location /cgi-bin/phf*>
  902. #    Deny from all
  903. #    ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
  904. #</Location>
  905.  
  906. #
  907. # Proxy Server directives. Uncomment the following lines to
  908. # enable the proxy server:
  909. #
  910. #<IfModule mod_proxy.c>
  911. #    ProxyRequests On
  912.  
  913. #    <Directory proxy:*>
  914. #        Order deny,allow
  915. #        Deny from all
  916. #        Allow from .your_domain.com
  917. #    </Directory>
  918.  
  919.     #
  920.     # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  921.     # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  922.     # Set to one of: Off | On | Full | Block
  923.     #
  924. #    ProxyVia On
  925.  
  926.     #
  927.     # To enable the cache as well, edit and uncomment the following lines:
  928.     # (no cacheing without CacheRoot)
  929.     #
  930. #    CacheRoot "c:/apache/proxy"
  931. #    CacheSize 5
  932. #    CacheGcInterval 4
  933. #    CacheMaxExpire 24
  934. #    CacheLastModifiedFactor 0.1
  935. #    CacheDefaultExpire 1
  936. #    NoCache a_domain.com another_domain.edu joes.garage_sale.com
  937.  
  938. #</IfModule>
  939. # End of proxy directives.
  940.  
  941. ### Section 3: Virtual Hosts
  942. #
  943. # VirtualHost: If you want to maintain multiple domains/hostnames on your
  944. # machine you can setup VirtualHost containers for them. Most configurations
  945. # use only name-based virtual hosts so the server doesn't need to worry about
  946. # IP addresses. This is indicated by the asterisks in the directives below.
  947. #
  948. # Please see the documentation at <URL:http://www.apache.org/docs/vhosts/>
  949. # for further details before you try to setup virtual hosts.
  950. #
  951. # You may use the command line option '-S' to verify your virtual host
  952. # configuration.
  953.  
  954. #
  955. # Use name-based virtual hosting.
  956. #
  957. #NameVirtualHost *
  958.  
  959. #
  960. # VirtualHost example:
  961. # Almost any Apache directive may go into a VirtualHost container.
  962. # The first VirtualHost section is used for requests without a known
  963. # server name.
  964. #
  965. #<VirtualHost *>
  966. #    ServerAdmin webmaster@dummy-host.example.com
  967. #    DocumentRoot /www/docs/dummy-host.example.com
  968. #    ServerName dummy-host.example.com
  969. #    ErrorLog logs/dummy-host.example.com-error_log
  970. #    CustomLog logs/dummy-host.example.com-access_log common
  971. #</VirtualHost>
  972.