home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / apache / apache_2.0.45-win32-x86-no_ssl.msi / Data.Cab / F98940_httpdwin.conf < prev    next >
Text File  |  2003-03-07  |  35KB  |  988 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://httpd.apache.org/docs-2.0/> 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. # The configuration directives are grouped into three basic sections:
  14. #  1. Directives that control the operation of the Apache server process as a
  15. #     whole (the 'global environment').
  16. #  2. Directives that define the parameters of the 'main' or 'default' server,
  17. #     which responds to requests that aren't handled by a virtual host.
  18. #     These directives also provide default values for the settings
  19. #     of all virtual hosts.
  20. #  3. Settings for virtual hosts, which allow Web requests to be sent to
  21. #     different IP addresses or hostnames and have them handled by the
  22. #     same Apache server process.
  23. #
  24. # Configuration and logfile names: If the filenames you specify for many
  25. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  26. # server will use that explicit path.  If the filenames do *not* begin
  27. # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
  28. # with ServerRoot set to "@@ServerRoot@@" will be interpreted by the
  29. # server as "@@ServerRoot@@/logs/foo.log".
  30. #
  31. # NOTE: Where filenames are specified, you must use forward slashes
  32. # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
  33. # If a drive letter is omitted, the drive on which Apache.exe is located
  34. # will be used by default.  It is recommended that you always supply
  35. # an explicit drive letter in absolute paths, however, to avoid
  36. # confusion.
  37. #
  38.  
  39. ### Section 1: Global Environment
  40. #
  41. # The directives in this section affect the overall operation of Apache,
  42. # such as the number of concurrent requests it can handle or where it
  43. # can find its configuration files.
  44. #
  45.  
  46. #
  47. # ServerRoot: The top of the directory tree under which the server's
  48. # configuration, error, and log files are kept.
  49. #
  50. # NOTE!  If you intend to place this on an NFS (or otherwise network)
  51. # mounted filesystem then please read the LockFile documentation (available
  52. # at <URL:http://httpd.apache.org/docs-2.0/mod/mpm_common.html#lockfile>);
  53. # you will save yourself a lot of trouble.
  54. #
  55. # Do NOT add a slash at the end of the directory path.
  56. #
  57. ServerRoot "@@ServerRoot@@"
  58.  
  59. #
  60. # ScoreBoardFile: File used to store internal server process information.
  61. # If unspecified (the default), the scoreboard will be stored in an
  62. # anonymous shared memory segment, and will be unavailable to third-party
  63. # applications.
  64. # If specified, ensure that no two invocations of Apache share the same
  65. # scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
  66. #
  67. #ScoreBoardFile logs/apache_runtime_status
  68.  
  69. #
  70. # PidFile: The file in which the server should record its process
  71. # identification number when it starts.
  72. #
  73. PidFile logs/httpd.pid
  74.  
  75. #
  76. # Timeout: The number of seconds before receives and sends time out.
  77. #
  78. Timeout 300
  79.  
  80. #
  81. # KeepAlive: Whether or not to allow persistent connections (more than
  82. # one request per connection). Set to "Off" to deactivate.
  83. #
  84. KeepAlive On
  85.  
  86. #
  87. # MaxKeepAliveRequests: The maximum number of requests to allow
  88. # during a persistent connection. Set to 0 to allow an unlimited amount.
  89. # We recommend you leave this number high, for maximum performance.
  90. #
  91. MaxKeepAliveRequests 100
  92.  
  93. #
  94. # KeepAliveTimeout: Number of seconds to wait for the next request from the
  95. # same client on the same connection.
  96. #
  97. KeepAliveTimeout 15
  98.  
  99. ##
  100. ## Server-Pool Size Regulation (MPM specific)
  101. ## 
  102.  
  103. # WinNT MPM
  104. # ThreadsPerChild: constant number of worker threads in the server process
  105. # MaxRequestsPerChild: maximum  number of requests a server process serves
  106. <IfModule mpm_winnt.c>
  107. ThreadsPerChild 250
  108. MaxRequestsPerChild  0
  109. </IfModule>
  110.  
  111. #
  112. # Listen: Allows you to bind Apache to specific IP addresses and/or
  113. # ports, instead of the default. See also the <VirtualHost>
  114. # directive.
  115. #
  116. # Change this to Listen on specific IP addresses as shown below to 
  117. # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
  118. #
  119. #Listen 12.34.56.78:80
  120. Listen @@Port@@
  121.  
  122. #
  123. # Dynamic Shared Object (DSO) Support
  124. #
  125. # To be able to use the functionality of a module which was built as a DSO you
  126. # have to place corresponding `LoadModule' lines at this location so the
  127. # directives contained in it are actually available _before_ they are used.
  128. # Statically compiled modules (those listed by `httpd -l') do not need
  129. # to be loaded here.
  130. #
  131. # Example:
  132. # LoadModule foo_module modules/mod_foo.so
  133. #
  134. LoadModule access_module modules/mod_access.so
  135. LoadModule actions_module modules/mod_actions.so
  136. LoadModule alias_module modules/mod_alias.so
  137. LoadModule asis_module modules/mod_asis.so
  138. LoadModule auth_module modules/mod_auth.so
  139. #LoadModule auth_anon_module modules/mod_auth_anon.so
  140. #LoadModule auth_dbm_module modules/mod_auth_dbm.so
  141. #LoadModule auth_digest_module modules/mod_auth_digest.so
  142. LoadModule autoindex_module modules/mod_autoindex.so
  143. #LoadModule cern_meta_module modules/mod_cern_meta.so
  144. LoadModule cgi_module modules/mod_cgi.so
  145. #LoadModule dav_module modules/mod_dav.so
  146. #LoadModule dav_fs_module modules/mod_dav_fs.so
  147. LoadModule dir_module modules/mod_dir.so
  148. LoadModule env_module modules/mod_env.so
  149. #LoadModule expires_module modules/mod_expires.so
  150. #LoadModule file_cache_module modules/mod_file_cache.so
  151. #LoadModule headers_module modules/mod_headers.so
  152. LoadModule imap_module modules/mod_imap.so
  153. LoadModule include_module modules/mod_include.so
  154. #LoadModule info_module modules/mod_info.so
  155. LoadModule isapi_module modules/mod_isapi.so
  156. LoadModule log_config_module modules/mod_log_config.so
  157. LoadModule mime_module modules/mod_mime.so
  158. #LoadModule mime_magic_module modules/mod_mime_magic.so
  159. #LoadModule proxy_module modules/mod_proxy.so
  160. #LoadModule proxy_connect_module modules/mod_proxy_connect.so
  161. #LoadModule proxy_http_module modules/mod_proxy_http.so
  162. #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
  163. LoadModule negotiation_module modules/mod_negotiation.so
  164. #LoadModule rewrite_module modules/mod_rewrite.so
  165. LoadModule setenvif_module modules/mod_setenvif.so
  166. #LoadModule speling_module modules/mod_speling.so
  167. #LoadModule status_module modules/mod_status.so
  168. #LoadModule unique_id_module modules/mod_unique_id.so
  169. LoadModule userdir_module modules/mod_userdir.so
  170. #LoadModule usertrack_module modules/mod_usertrack.so
  171. #LoadModule vhost_alias_module modules/mod_vhost_alias.so
  172. #LoadModule ssl_module modules/mod_ssl.so
  173.  
  174. #
  175. # ExtendedStatus controls whether Apache will generate "full" status
  176. # information (ExtendedStatus On) or just basic information (ExtendedStatus
  177. # Off) when the "server-status" handler is called. The default is Off.
  178. #
  179. #ExtendedStatus On
  180.  
  181. ### Section 2: 'Main' server configuration
  182. #
  183. # The directives in this section set up the values used by the 'main'
  184. # server, which responds to any requests that aren't handled by a
  185. # <VirtualHost> definition.  These values also provide defaults for
  186. # any <VirtualHost> containers you may define later in the file.
  187. #
  188. # All of these directives may appear inside <VirtualHost> containers,
  189. # in which case these default settings will be overridden for the
  190. # virtual host being defined.
  191. #
  192.  
  193. #
  194. # ServerAdmin: Your address, where problems with the server should be
  195. # e-mailed.  This address appears on some server-generated pages, such
  196. # as error documents.  e.g. admin@your-domain.com
  197. #
  198. ServerAdmin @@ServerAdmin@@
  199.  
  200. #
  201. # ServerName gives the name and port that the server uses to identify itself.
  202. # This can often be determined automatically, but we recommend you specify
  203. # it explicitly to prevent problems during startup.
  204. #
  205. # If this is not set to valid DNS name for your host, server-generated
  206. # redirections will not work.  See also the UseCanonicalName directive.
  207. #
  208. # If your host doesn't have a registered DNS name, enter its IP address here.
  209. # You will have to access it by its address anyway, and this will make 
  210. # redirections work in a sensible way.
  211. #
  212. ServerName @@ServerName@@:@@Port@@
  213.  
  214. #
  215. # UseCanonicalName: Determines how Apache constructs self-referencing 
  216. # URLs and the SERVER_NAME and SERVER_PORT variables.
  217. # When set "Off", Apache will use the Hostname and Port supplied
  218. # by the client.  When set "On", Apache will use the value of the
  219. # ServerName directive.
  220. #
  221. UseCanonicalName Off
  222.  
  223. #
  224. # DocumentRoot: The directory out of which you will serve your
  225. # documents. By default, all requests are taken from this directory, but
  226. # symbolic links and aliases may be used to point to other locations.
  227. #
  228. DocumentRoot "@@ServerRoot@@/htdocs"
  229.  
  230. #
  231. # Each directory to which Apache has access can be configured with respect
  232. # to which services and features are allowed and/or disabled in that
  233. # directory (and its subdirectories). 
  234. #
  235. # First, we configure the "default" to be a very restrictive set of 
  236. # features.  
  237. #
  238. <Directory />
  239.     Options FollowSymLinks
  240.     AllowOverride None
  241. </Directory>
  242.  
  243. #
  244. # Note that from this point forward you must specifically allow
  245. # particular features to be enabled - so if something's not working as
  246. # you might expect, make sure that you have specifically enabled it
  247. # below.
  248. #
  249.  
  250. #
  251. # This should be changed to whatever you set DocumentRoot to.
  252. #
  253. <Directory "@@ServerRoot@@/htdocs">
  254.  
  255. #
  256. # Possible values for the Options directive are "None", "All",
  257. # or any combination of:
  258. #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
  259. #
  260. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  261. # doesn't give it to you.
  262. #
  263. # The Options directive is both complicated and important.  Please see
  264. # http://httpd.apache.org/docs-2.0/mod/core.html#options
  265. # for more information.
  266. #
  267.     Options Indexes FollowSymLinks
  268.  
  269. #
  270. # AllowOverride controls what directives may be placed in .htaccess files.
  271. # It can be "All", "None", or any combination of the keywords:
  272. #   Options FileInfo AuthConfig Limit
  273. #
  274.     AllowOverride None
  275.  
  276. #
  277. # Controls who can get stuff from this server.
  278. #
  279.     Order allow,deny
  280.     Allow from all
  281.  
  282. </Directory>
  283.  
  284. #
  285. # UserDir: The name of the directory that is appended onto a user's home
  286. # directory if a ~user request is received.  Be especially careful to use
  287. # proper, forward slashes here.  On Windows NT, "Personal/My Website"
  288. # is a more appropriate choice.
  289. #
  290. UserDir "My Documents/My Website"
  291.  
  292. #
  293. # Control access to UserDir directories.  The following is an example
  294. # for a site where these directories are restricted to read-only.
  295. #
  296. # You must correct the path for the root to match your system's configured
  297. # user directory location, e.g. "C:/WinNT/profiles/*/My Documents/My Website"
  298. # or whichever, as appropriate.
  299. #
  300. #<Directory "C:/Documents and Settings/*/My Documents/My Website">
  301. #    AllowOverride FileInfo AuthConfig Limit
  302. #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  303. #    <Limit GET POST OPTIONS PROPFIND>
  304. #        Order allow,deny
  305. #        Allow from all
  306. #    </Limit>
  307. #    <LimitExcept GET POST OPTIONS PROPFIND>
  308. #        Order deny,allow
  309. #        Deny from all
  310. #    </LimitExcept>
  311. #</Directory>
  312.  
  313. #
  314. # DirectoryIndex: sets the file that Apache will serve if a directory
  315. # is requested.
  316. #
  317. # The index.html.var file (a type-map) is used to deliver content-
  318. # negotiated documents.  The MultiViews Option can be used for the 
  319. # same purpose, but it is much slower.
  320. #
  321. DirectoryIndex index.html index.html.var
  322.  
  323. #
  324. # AccessFileName: The name of the file to look for in each directory
  325. # for additional configuration directives.  See also the AllowOverride 
  326. # directive.
  327. #
  328. AccessFileName .htaccess
  329.  
  330. #
  331. # The following lines prevent .htaccess and .htpasswd files from being 
  332. # viewed by Web clients. 
  333. #
  334. <Files ~ "^\.ht">
  335.     Order allow,deny
  336.     Deny from all
  337. </Files>
  338.  
  339. #
  340. # TypesConfig describes where the mime.types file (or equivalent) is
  341. # to be found.
  342. #
  343. TypesConfig conf/mime.types
  344.  
  345. #
  346. # DefaultType is the default MIME type the server will use for a document
  347. # if it cannot otherwise determine one, such as from filename extensions.
  348. # If your server contains mostly text or HTML documents, "text/plain" is
  349. # a good value.  If most of your content is binary, such as applications
  350. # or images, you may want to use "application/octet-stream" instead to
  351. # keep browsers from trying to display binary files as though they are
  352. # text.
  353. #
  354. DefaultType text/plain
  355.  
  356. #
  357. # The mod_mime_magic module allows the server to use various hints from the
  358. # contents of the file itself to determine its type.  The MIMEMagicFile
  359. # directive tells the module where the hint definitions are located.
  360. #
  361. <IfModule mod_mime_magic.c>
  362.     MIMEMagicFile conf/magic
  363. </IfModule>
  364.  
  365. #
  366. # HostnameLookups: Log the names of clients or just their IP addresses
  367. # e.g., www.apache.org (on) or 204.62.129.132 (off).
  368. # The default is off because it'd be overall better for the net if people
  369. # had to knowingly turn this feature on, since enabling it means that
  370. # each client request will result in AT LEAST one lookup request to the
  371. # nameserver.
  372. #
  373. HostnameLookups Off
  374.  
  375. #
  376. # EnableMMAP: Control whether memory-mapping is used to deliver
  377. # files (assuming that the underlying OS supports it).
  378. # The default is on; turn this off if you serve from NFS-mounted 
  379. # filesystems.  On some systems, turning it off (regardless of
  380. # filesystem) can improve performance; for details, please see
  381. # http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap
  382. #
  383. #EnableMMAP off
  384.  
  385. #
  386. # EnableSendfile: Control whether the sendfile kernel support is 
  387. # used  to deliver files (assuming that the OS supports it).
  388. # The default is on; turn this off if you serve from NFS-mounted 
  389. # filesystems.  Please see
  390. # http://httpd.apache.org/docs-2.0/mod/core.html#enablesendfile
  391. #
  392. #EnableSendfile off
  393.  
  394. #
  395. # ErrorLog: The location of the error log file.
  396. # If you do not specify an ErrorLog directive within a <VirtualHost>
  397. # container, error messages relating to that virtual host will be
  398. # logged here.  If you *do* define an error logfile for a <VirtualHost>
  399. # container, that host's errors will be logged there and not here.
  400. #
  401. ErrorLog logs/error.log
  402.  
  403. #
  404. # LogLevel: Control the number of messages logged to the error.log.
  405. # Possible values include: debug, info, notice, warn, error, crit,
  406. # alert, emerg.
  407. #
  408. LogLevel warn
  409.  
  410. #
  411. # The following directives define some format nicknames for use with
  412. # a CustomLog directive (see below).
  413. #
  414. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  415. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  416. LogFormat "%{Referer}i -> %U" referer
  417. LogFormat "%{User-agent}i" agent
  418.  
  419. # You need to enable mod_logio.c to use %I and %O
  420. #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  421.  
  422. #
  423. # The location and format of the access logfile (Common Logfile Format).
  424. # If you do not define any access logfiles within a <VirtualHost>
  425. # container, they will be logged here.  Contrariwise, if you *do*
  426. # define per-<VirtualHost> access logfiles, transactions will be
  427. # logged therein and *not* in this file.
  428. #
  429. CustomLog logs/access.log common
  430.  
  431. #
  432. # If you would like to have agent and referer logfiles, uncomment the
  433. # following directives.
  434. #
  435. #CustomLog logs/referer.log referer
  436. #CustomLog logs/agent.log agent
  437.  
  438. #
  439. # If you prefer a single logfile with access, agent, and referer information
  440. # (Combined Logfile Format) you can use the following directive.
  441. #
  442. #CustomLog logs/access.log combined
  443.  
  444. #
  445. # ServerTokens
  446. # This directive configures what you return as the Server HTTP response
  447. # Header. The default is 'Full' which sends information about the OS-Type
  448. # and compiled in modules.
  449. # Set to one of:  Full | OS | Minor | Minimal | Major | Prod
  450. # where Full conveys the most information, and Prod the least.
  451. #
  452. ServerTokens Full
  453.  
  454. #
  455. # Optionally add a line containing the server version and virtual host
  456. # name to server-generated pages (internal error documents, FTP directory 
  457. # listings, mod_status and mod_info output etc., but not CGI generated 
  458. # documents or custom error documents).
  459. # Set to "EMail" to also include a mailto: link to the ServerAdmin.
  460. # Set to one of:  On | Off | EMail
  461. #
  462. ServerSignature On
  463.  
  464. #
  465. # Aliases: Add here as many aliases as you need (with no limit). The format is 
  466. # Alias fakename realname
  467. #
  468. # Note that if you include a trailing / on fakename then the server will
  469. # require it to be present in the URL.  So "/icons" isn't aliased in this
  470. # example, only "/icons/".  If the fakename is slash-terminated, then the 
  471. # realname must also be slash terminated, and if the fakename omits the 
  472. # trailing slash, the realname must also omit it.
  473. #
  474. # We include the /icons/ alias for FancyIndexed directory listings.  If you
  475. # do not use FancyIndexing, you may comment this out.
  476. #
  477. Alias /icons/ "@@ServerRoot@@/icons/"
  478.  
  479. <Directory "@@ServerRoot@@/icons">
  480.     Options Indexes MultiViews
  481.     AllowOverride None
  482.     Order allow,deny
  483.     Allow from all
  484. </Directory>
  485.  
  486. #
  487. # This should be changed to the ServerRoot/manual/.  The alias provides
  488. # the manual, even if you choose to move your DocumentRoot.  You may comment
  489. # this out if you do not care for the documentation.
  490. #
  491. Alias /manual "@@ServerRoot@@/manual"
  492.  
  493. <Directory "@@ServerRoot@@/manual">
  494.     Options Indexes FollowSymLinks MultiViews IncludesNoExec
  495.     AddOutputFilter Includes html
  496.     AllowOverride None
  497.     Order allow,deny
  498.     Allow from all
  499. </Directory>
  500.  
  501. #
  502. # ScriptAlias: This controls which directories contain server scripts.
  503. # ScriptAliases are essentially the same as Aliases, except that
  504. # documents in the realname directory are treated as applications and
  505. # run by the server when requested rather than as documents sent to the client.
  506. # The same rules about trailing "/" apply to ScriptAlias directives as to
  507. # Alias.
  508. #
  509. ScriptAlias /cgi-bin/ "@@ServerRoot@@/cgi-bin/"
  510.  
  511. #
  512. # "@@ServerRoot@@/cgi-bin" should be changed to whatever your ScriptAliased
  513. # CGI directory exists, if you have that configured.
  514. #
  515. <Directory "@@ServerRoot@@/cgi-bin">
  516.     AllowOverride None
  517.     Options None
  518.     Order allow,deny
  519.     Allow from all
  520. </Directory>
  521.  
  522. #
  523. # Redirect allows you to tell clients about documents which used to exist in
  524. # your server's namespace, but do not anymore. This allows you to tell the
  525. # clients where to look for the relocated document.
  526. # Example:
  527. # Redirect permanent /foo http://www.example.com/bar
  528.  
  529. #
  530. # Directives controlling the display of server-generated directory listings.
  531. #
  532.  
  533. #
  534. # IndexOptions: Controls the appearance of server-generated directory
  535. # listings.
  536. #
  537. IndexOptions FancyIndexing VersionSort
  538.  
  539. #
  540. # AddIcon* directives tell the server which icon to show for different
  541. # files or filename extensions.  These are only displayed for
  542. # FancyIndexed directories.
  543. #
  544. AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
  545.  
  546. AddIconByType (TXT,/icons/text.gif) text/*
  547. AddIconByType (IMG,/icons/image2.gif) image/*
  548. AddIconByType (SND,/icons/sound2.gif) audio/*
  549. AddIconByType (VID,/icons/movie.gif) video/*
  550.  
  551. AddIcon /icons/binary.gif .bin .exe
  552. AddIcon /icons/binhex.gif .hqx
  553. AddIcon /icons/tar.gif .tar
  554. AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
  555. AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
  556. AddIcon /icons/a.gif .ps .ai .eps
  557. AddIcon /icons/layout.gif .html .shtml .htm .pdf
  558. AddIcon /icons/text.gif .txt
  559. AddIcon /icons/c.gif .c
  560. AddIcon /icons/p.gif .pl .py
  561. AddIcon /icons/f.gif .for
  562. AddIcon /icons/dvi.gif .dvi
  563. AddIcon /icons/uuencoded.gif .uu
  564. AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
  565. AddIcon /icons/tex.gif .tex
  566. AddIcon /icons/bomb.gif core
  567.  
  568. AddIcon /icons/back.gif ..
  569. AddIcon /icons/hand.right.gif README
  570. AddIcon /icons/folder.gif ^^DIRECTORY^^
  571. AddIcon /icons/blank.gif ^^BLANKICON^^
  572.  
  573. #
  574. # DefaultIcon is which icon to show for files which do not have an icon
  575. # explicitly set.
  576. #
  577. DefaultIcon /icons/unknown.gif
  578.  
  579. #
  580. # AddDescription allows you to place a short description after a file in
  581. # server-generated indexes.  These are only displayed for FancyIndexed
  582. # directories.
  583. # Format: AddDescription "description" filename
  584. #
  585. #AddDescription "GZIP compressed document" .gz
  586. #AddDescription "tar archive" .tar
  587. #AddDescription "GZIP compressed tar archive" .tgz
  588.  
  589. #
  590. # ReadmeName is the name of the README file the server will look for by
  591. # default, and append to directory listings.
  592. #
  593. # HeaderName is the name of a file which should be prepended to
  594. # directory indexes. 
  595. ReadmeName README.html
  596. HeaderName HEADER.html
  597.  
  598. #
  599. # IndexIgnore is a set of filenames which directory indexing should ignore
  600. # and not include in the listing.  Shell-style wildcarding is permitted.
  601. #
  602. IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
  603.  
  604. #
  605. # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
  606. # information on the fly. Note: Not all browsers support this.
  607. # Despite the name similarity, the following Add* directives have nothing
  608. # to do with the FancyIndexing customization directives above.
  609. #
  610. AddEncoding x-compress Z
  611. AddEncoding x-gzip gz tgz
  612.  
  613. #
  614. # DefaultLanguage and AddLanguage allows you to specify the language of 
  615. # a document. You can then use content negotiation to give a browser a 
  616. # file in a language the user can understand.
  617. #
  618. # Specify a default language. This means that all data
  619. # going out without a specific language tag (see below) will 
  620. # be marked with this one. You probably do NOT want to set
  621. # this unless you are sure it is correct for all cases.
  622. #
  623. # * It is generally better to not mark a page as 
  624. # * being a certain language than marking it with the wrong
  625. # * language!
  626. #
  627. # DefaultLanguage nl
  628. #
  629. # Note 1: The suffix does not have to be the same as the language
  630. # keyword --- those with documents in Polish (whose net-standard
  631. # language code is pl) may wish to use "AddLanguage pl .po" to
  632. # avoid the ambiguity with the common suffix for perl scripts.
  633. #
  634. # Note 2: The example entries below illustrate that in some cases 
  635. # the two character 'Language' abbreviation is not identical to 
  636. # the two character 'Country' code for its country,
  637. # E.g. 'Danmark/dk' versus 'Danish/da'.
  638. #
  639. # Note 3: In the case of 'ltz' we violate the RFC by using a three char
  640. # specifier. There is 'work in progress' to fix this and get
  641. # the reference data for rfc1766 cleaned up.
  642. #
  643. # Danish (da) - Dutch (nl) - English (en) - Estonian (et)
  644. # French (fr) - German (de) - Greek-Modern (el)
  645. # Italian (it) - Norwegian (no) - Norwegian Nynorsk (nn) - Korean (ko)
  646. # Portugese (pt) - Luxembourgeois* (ltz)
  647. # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
  648. # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
  649. # Russian (ru) - Croatian (hr)
  650. #
  651. AddLanguage da .dk
  652. AddLanguage nl .nl
  653. AddLanguage en .en
  654. AddLanguage et .et
  655. AddLanguage fr .fr
  656. AddLanguage de .de
  657. AddLanguage he .he
  658. AddLanguage el .el
  659. AddLanguage it .it
  660. AddLanguage ja .ja
  661. AddLanguage pl .po
  662. AddLanguage ko .ko
  663. AddLanguage pt .pt
  664. AddLanguage nn .nn
  665. AddLanguage no .no
  666. AddLanguage pt-br .pt-br
  667. AddLanguage ltz .ltz
  668. AddLanguage ca .ca
  669. AddLanguage es .es
  670. AddLanguage sv .sv
  671. AddLanguage cz .cz
  672. AddLanguage ru .ru
  673. AddLanguage tw .tw
  674. AddLanguage zh-tw .tw
  675. AddLanguage hr .hr
  676.  
  677. #
  678. # LanguagePriority allows you to give precedence to some languages
  679. # in case of a tie during content negotiation.
  680. #
  681. # Just list the languages in decreasing order of preference. We have
  682. # more or less alphabetized them here. You probably want to change this.
  683. #
  684. LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv tw
  685.  
  686. #
  687. # ForceLanguagePriority allows you to serve a result page rather than
  688. # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
  689. # [in case no accepted languages matched the available variants]
  690. #
  691. ForceLanguagePriority Prefer Fallback
  692.  
  693. #
  694. # Specify a default charset for all pages sent out. This is
  695. # always a good idea and opens the door for future internationalisation
  696. # of your web site, should you ever want it. Specifying it as
  697. # a default does little harm; as the standard dictates that a page
  698. # is in iso-8859-1 (latin1) unless specified otherwise i.e. you
  699. # are merely stating the obvious. There are also some security
  700. # reasons in browsers, related to javascript and URL parsing
  701. # which encourage you to always set a default char set.
  702. #
  703. AddDefaultCharset ISO-8859-1
  704.  
  705. #
  706. # Commonly used filename extensions to character sets. You probably
  707. # want to avoid clashes with the language extensions, unless you
  708. # are good at carefully testing your setup after each change.
  709. # See http://www.iana.org/assignments/character-sets for the
  710. # official list of charset names and their respective RFCs.
  711. #
  712. AddCharset ISO-8859-1  .iso8859-1 .latin1
  713. AddCharset ISO-8859-2  .iso8859-2 .latin2 .cen
  714. AddCharset ISO-8859-3  .iso8859-3 .latin3
  715. AddCharset ISO-8859-4  .iso8859-4 .latin4
  716. AddCharset ISO-8859-5  .iso8859-5 .latin5 .cyr .iso-ru
  717. AddCharset ISO-8859-6  .iso8859-6 .latin6 .arb
  718. AddCharset ISO-8859-7  .iso8859-7 .latin7 .grk
  719. AddCharset ISO-8859-8  .iso8859-8 .latin8 .heb
  720. AddCharset ISO-8859-9  .iso8859-9 .latin9 .trk
  721. AddCharset ISO-2022-JP .iso2022-jp .jis
  722. AddCharset ISO-2022-KR .iso2022-kr .kis
  723. AddCharset ISO-2022-CN .iso2022-cn .cis
  724. AddCharset Big5        .Big5       .big5
  725. # For russian, more than one charset is used (depends on client, mostly):
  726. AddCharset WINDOWS-1251 .cp-1251   .win-1251
  727. AddCharset CP866       .cp866
  728. AddCharset KOI8-r      .koi8-r .koi8-ru
  729. AddCharset KOI8-ru     .koi8-uk .ua
  730. AddCharset ISO-10646-UCS-2 .ucs2
  731. AddCharset ISO-10646-UCS-4 .ucs4
  732. AddCharset UTF-8       .utf8
  733.  
  734. # The set below does not map to a specific (iso) standard
  735. # but works on a fairly wide range of browsers. Note that
  736. # capitalization actually matters (it should not, but it
  737. # does for some browsers).
  738. #
  739. # See http://www.iana.org/assignments/character-sets
  740. # for a list of sorts. But browsers support few.
  741. #
  742. AddCharset GB2312      .gb2312 .gb 
  743. AddCharset utf-7       .utf7
  744. AddCharset utf-8       .utf8
  745. AddCharset big5        .big5 .b5
  746. AddCharset EUC-TW      .euc-tw
  747. AddCharset EUC-JP      .euc-jp
  748. AddCharset EUC-KR      .euc-kr
  749. AddCharset shift_jis   .sjis
  750.  
  751. #
  752. # AddType allows you to add to or override the MIME configuration
  753. # file mime.types for specific file types.
  754. #
  755. AddType application/x-tar .tgz
  756. AddType image/x-icon .ico
  757.  
  758. #
  759. # AddHandler allows you to map certain file extensions to "handlers":
  760. # actions unrelated to filetype. These can be either built into the server
  761. # or added with the Action directive (see below)
  762. #
  763. # To use CGI scripts outside of ScriptAliased directories:
  764. # (You will also need to add "ExecCGI" to the "Options" directive.)
  765. #
  766. #AddHandler cgi-script .cgi
  767.  
  768. #
  769. # For files that include their own HTTP headers:
  770. #
  771. #AddHandler send-as-is asis
  772.  
  773. #
  774. # For server-parsed imagemap files:
  775. #
  776. #AddHandler imap-file map
  777.  
  778. #
  779. # For type maps (negotiated resources):
  780. # (This is enabled by default to allow the Apache "It Worked" page
  781. #  to be distributed in multiple languages.)
  782. #
  783. AddHandler type-map var
  784.  
  785. #
  786. # Filters allow you to process content before it is sent to the client.
  787. #
  788. # To parse .shtml files for server-side includes (SSI):
  789. # (You will also need to add "Includes" to the "Options" directive.)
  790. #
  791. #AddType text/html .shtml
  792. #AddOutputFilter INCLUDES .shtml
  793.  
  794. #
  795. # Action lets you define media types that will execute a script whenever
  796. # a matching file is called. This eliminates the need for repeated URL
  797. # pathnames for oft-used CGI file processors.
  798. # Format: Action media/type /cgi-script/location
  799. # Format: Action handler-name /cgi-script/location
  800. #
  801.  
  802. #
  803. # Customizable error responses come in three flavors:
  804. # 1) plain text 2) local redirects 3) external redirects
  805. #
  806. # Some examples:
  807. #ErrorDocument 500 "The server made a boo boo."
  808. #ErrorDocument 404 /missing.html
  809. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  810. #ErrorDocument 402 http://www.example.com/subscription_info.html
  811. #
  812.  
  813. #
  814. # Putting this all together, we can internationalize error responses.
  815. #
  816. # We use Alias to redirect any /error/HTTP_<error>.html.var response to
  817. # our collection of by-error message multi-language collections.  We use 
  818. # includes to substitute the appropriate text.
  819. #
  820. # You can modify the messages' appearance without changing any of the
  821. # default HTTP_<error>.html.var files by adding the line:
  822. #
  823. #   Alias /error/include/ "/your/include/path/"
  824. #
  825. # which allows you to create your own set of files by starting with the
  826. # @exp_errordir@/include/ files and copying them to /your/include/path/, 
  827. # even on a per-VirtualHost basis.  The default include files will display
  828. # your Apache version number and your ServerAdmin email address regardless
  829. # of the setting of ServerSignature.
  830. #
  831. # The internationalized error documents require mod_alias, mod_include
  832. # and mod_negotiation.  To activate them, uncomment the following 30 lines.
  833.  
  834. #    Alias /error/ "@exp_errordir@/"
  835. #
  836. #    <Directory "@exp_errordir@">
  837. #        AllowOverride None
  838. #        Options IncludesNoExec
  839. #        AddOutputFilter Includes html
  840. #        AddHandler type-map var
  841. #        Order allow,deny
  842. #        Allow from all
  843. #        LanguagePriority en de es fr it nl sv
  844. #        ForceLanguagePriority Prefer Fallback
  845. #    </Directory>
  846. #
  847. #    ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
  848. #    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
  849. #    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
  850. #    ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
  851. #    ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
  852. #    ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
  853. #    ErrorDocument 410 /error/HTTP_GONE.html.var
  854. #    ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
  855. #    ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
  856. #    ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
  857. #    ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
  858. #    ErrorDocument 415 /error/HTTP_SERVICE_UNAVAILABLE.html.var
  859. #    ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
  860. #    ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
  861. #    ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
  862. #    ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
  863. #    ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
  864.  
  865.  
  866.  
  867. #
  868. # The following directives modify normal HTTP response behavior to
  869. # handle known problems with browser implementations.
  870. #
  871. BrowserMatch "Mozilla/2" nokeepalive
  872. BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
  873. BrowserMatch "RealPlayer 4\.0" force-response-1.0
  874. BrowserMatch "Java/1\.0" force-response-1.0
  875. BrowserMatch "JDK/1\.0" force-response-1.0
  876.  
  877. #
  878. # The following directive disables redirects on non-GET requests for
  879. # a directory that does not include the trailing slash.  This fixes a 
  880. # problem with Microsoft WebFolders which does not appropriately handle 
  881. # redirects for folders with DAV methods.
  882. # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
  883. #
  884. BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
  885. BrowserMatch "^WebDrive" redirect-carefully
  886. BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
  887. BrowserMatch "^gnome-vfs" redirect-carefully
  888.  
  889. #
  890. # Allow server status reports generated by mod_status,
  891. # with the URL of http://servername/server-status
  892. # Change the ".@@DomainName@@" to match your domain to enable.
  893. #
  894. #<Location /server-status>
  895. #    SetHandler server-status
  896. #    Order deny,allow
  897. #    Deny from all
  898. #    Allow from .@@DomainName@@
  899. #</Location>
  900.  
  901. #
  902. # Allow remote server configuration reports, with the URL of
  903. #  http://servername/server-info (requires that mod_info.c be loaded).
  904. # Change the ".@@DomainName@@" to match your domain to enable.
  905. #
  906. #<Location /server-info>
  907. #    SetHandler server-info
  908. #    Order deny,allow
  909. #    Deny from all
  910. #    Allow from .@@DomainName@@
  911. #</Location>
  912.  
  913. #
  914. # Proxy Server directives. Uncomment the following lines to
  915. # enable the proxy server:
  916. #
  917. #<IfModule mod_proxy.c>
  918. #ProxyRequests On
  919. #
  920. #<Proxy *>
  921. #    Order deny,allow
  922. #    Deny from all
  923. #    Allow from .example.com
  924. #</Proxy>
  925.  
  926. #
  927. # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  928. # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  929. # Set to one of: Off | On | Full | Block
  930. #
  931. #ProxyVia On
  932.  
  933. #
  934. # To enable the cache as well, edit and uncomment the following lines:
  935. # (no cacheing without CacheRoot)
  936. #
  937. #CacheRoot "@@ServerRoot@@/proxy"
  938. #CacheSize 5
  939. #CacheGcInterval 4
  940. #CacheMaxExpire 24
  941. #CacheLastModifiedFactor 0.1
  942. #CacheDefaultExpire 1
  943. #NoCache a-domain.com another-domain.edu joes.garage-sale.com
  944.  
  945. #</IfModule>
  946. # End of proxy directives.
  947.  
  948. #
  949. # Bring in additional module-specific configurations
  950. #
  951. <IfModule mod_ssl.c>
  952.     Include conf/ssl.conf
  953. </IfModule>
  954.  
  955.  
  956. ### Section 3: Virtual Hosts
  957. #
  958. # VirtualHost: If you want to maintain multiple domains/hostnames on your
  959. # machine you can setup VirtualHost containers for them. Most configurations
  960. # use only name-based virtual hosts so the server doesn't need to worry about
  961. # IP addresses. This is indicated by the asterisks in the directives below.
  962. #
  963. # Please see the documentation at 
  964. # <URL:http://httpd.apache.org/docs-2.0/vhosts/>
  965. # for further details before you try to setup virtual hosts.
  966. #
  967. # You may use the command line option '-S' to verify your virtual host
  968. # configuration.
  969.  
  970. #
  971. # Use name-based virtual hosting.
  972. #
  973. #NameVirtualHost *
  974.  
  975. #
  976. # VirtualHost example:
  977. # Almost any Apache directive may go into a VirtualHost container.
  978. # The first VirtualHost section is used for requests without a known
  979. # server name.
  980. #
  981. #<VirtualHost *>
  982. #    ServerAdmin webmaster@dummy-host.example.com
  983. #    DocumentRoot /www/docs/dummy-host.example.com
  984. #    ServerName dummy-host.example.com
  985. #    ErrorLog logs/dummy-host.example.com-error_log
  986. #    CustomLog logs/dummy-host.example.com-access_log common
  987. #</VirtualHost>
  988.