Guest User

Apache httpd.conf

a guest
Aug 12th, 2013
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.25 KB | None | 0 0
  1. #
  2. # This is the main Apache HTTP server configuration file. It contains the
  3. # configuration directives that give the server its instructions.
  4. # See for detailed information.
  5. # In particular, see
  6. #
  7. # for a discussion of each configuration directive.
  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. # Configuration and logfile names: If the filenames you specify for many
  14. # of the server's control files begin with "/" (or "drive:\" for Win32), the
  15. # server will use that explicit path. If the filenames do *not* begin
  16. # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
  17. # with ServerRoot set to "E:\Apache Software Foundation\Apache2.2" will be interpreted by the
  18. # server as "E:\Apache Software Foundation/Apache2.2/logs/foo.log".
  19. #
  20. # NOTE: Where filenames are specified, you must use forward slashes
  21. # instead of backslashes (e.g., "c:\apache" instead of "c:\apache").
  22. # If a drive letter is omitted, the drive on which httpd.exe is located
  23. # will be used by default. It is recommended that you always supply
  24. # an explicit drive letter in absolute paths to avoid confusion.
  25.  
  26. #
  27. # ServerRoot: The top of the directory tree under which the server's
  28. # configuration, error, and log files are kept.
  29. #
  30. # Do not add a slash at the end of the directory path. If you point
  31. # ServerRoot at a non-local disk, be sure to point the LockFile directive
  32. # at a local disk. If you wish to share the same ServerRoot for multiple
  33. # httpd daemons, you will need to change at least LockFile and PidFile.
  34. #
  35. ServerRoot "E:\Apache Software Foundation\Apache2.2"
  36.  
  37. #
  38. # Listen: Allows you to bind Apache to specific IP addresses and/or
  39. # ports, instead of the default. See also the
  40. # directive.
  41. #
  42. # Change this to Listen on specific IP addresses as shown below to
  43. # prevent Apache from glomming onto all bound IP addresses.
  44. #
  45. #Listen 192.168.1.12:80
  46. Listen 80
  47.  
  48. #
  49. # Dynamic Shared Object (DSO) Support
  50. #
  51. # To be able to use the functionality of a module which was built as a DSO you
  52. # have to place corresponding `LoadModule' lines at this location so the
  53. # directives contained in it are actually available _before_ they are used.
  54. # Statically compiled modules (those listed by `httpd -l') do not need
  55. # to be loaded here.
  56. #
  57. # Example:
  58. # LoadModule foo_module modules/mod_foo.so
  59. #
  60. LoadModule actions_module modules/mod_actions.so
  61. LoadModule alias_module modules/mod_alias.so
  62. LoadModule asis_module modules/mod_asis.so
  63. LoadModule auth_basic_module modules/mod_auth_basic.so
  64. #LoadModule auth_digest_module modules/mod_auth_digest.so
  65. #LoadModule authn_alias_module modules/mod_authn_alias.so
  66. #LoadModule authn_anon_module modules/mod_authn_anon.so
  67. #LoadModule authn_dbd_module modules/mod_authn_dbd.so
  68. #LoadModule authn_dbm_module modules/mod_authn_dbm.so
  69. LoadModule authn_default_module modules/mod_authn_default.so
  70. LoadModule authn_file_module modules/mod_authn_file.so
  71. #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
  72. #LoadModule authz_dbm_module modules/mod_authz_dbm.so
  73. LoadModule authz_default_module modules/mod_authz_default.so
  74. LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
  75. LoadModule authz_host_module modules/mod_authz_host.so
  76. #LoadModule authz_owner_module modules/mod_authz_owner.so
  77. LoadModule authz_user_module modules/mod_authz_user.so
  78. LoadModule autoindex_module modules/mod_autoindex.so
  79. #LoadModule cache_module modules/mod_cache.so
  80. #LoadModule cern_meta_module modules/mod_cern_meta.so
  81. LoadModule cgi_module modules/mod_cgi.so
  82. #LoadModule charset_lite_module modules/mod_charset_lite.so
  83. #LoadModule dav_module modules/mod_dav.so
  84. #LoadModule dav_fs_module modules/mod_dav_fs.so
  85. #LoadModule dav_lock_module modules/mod_dav_lock.so
  86. #LoadModule dbd_module modules/mod_dbd.so
  87. #LoadModule deflate_module modules/mod_deflate.so
  88. LoadModule dir_module modules/mod_dir.so
  89. #LoadModule disk_cache_module modules/mod_disk_cache.so
  90. #LoadModule dumpio_module modules/mod_dumpio.so
  91. LoadModule env_module modules/mod_env.so
  92. #LoadModule expires_module modules/mod_expires.so
  93. #LoadModule ext_filter_module modules/mod_ext_filter.so
  94. #LoadModule file_cache_module modules/mod_file_cache.so
  95. #LoadModule filter_module modules/mod_filter.so
  96. #LoadModule headers_module modules/mod_headers.so
  97. #LoadModule ident_module modules/mod_ident.so
  98. #LoadModule imagemap_module modules/mod_imagemap.so
  99. LoadModule include_module modules/mod_include.so
  100. #LoadModule info_module modules/mod_info.so
  101. LoadModule isapi_module modules/mod_isapi.so
  102. #LoadModule ldap_module modules/mod_ldap.so
  103. #LoadModule logio_module modules/mod_logio.so
  104. LoadModule log_config_module modules/mod_log_config.so
  105. #LoadModule log_forensic_module modules/mod_log_forensic.so
  106. #LoadModule mem_cache_module modules/mod_mem_cache.so
  107. LoadModule mime_module modules/mod_mime.so
  108. #LoadModule mime_magic_module modules/mod_mime_magic.so
  109. LoadModule negotiation_module modules/mod_negotiation.so
  110. #LoadModule proxy_module modules/mod_proxy.so
  111. #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
  112. #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
  113. #LoadModule proxy_connect_module modules/mod_proxy_connect.so
  114. #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
  115. #LoadModule proxy_http_module modules/mod_proxy_http.so
  116. #LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
  117. #LoadModule reqtimeout_module modules/mod_reqtimeout.so
  118. #LoadModule rewrite_module modules/mod_rewrite.so
  119. LoadModule setenvif_module modules/mod_setenvif.so
  120. #LoadModule speling_module modules/mod_speling.so
  121. #LoadModule ssl_module modules/mod_ssl.so
  122. #LoadModule status_module modules/mod_status.so
  123. #LoadModule substitute_module modules/mod_substitute.so
  124. #LoadModule unique_id_module modules/mod_unique_id.so
  125. #LoadModule userdir_module modules/mod_userdir.so
  126. #LoadModule usertrack_module modules/mod_usertrack.so
  127. #LoadModule version_module modules/mod_version.so
  128. #LoadModule vhost_alias_module modules/mod_vhost_alias.so
  129.  
  130.  
  131.  
  132. #
  133. # If you wish httpd to run as a different user or group, you must run
  134. # httpd as root initially and it will switch.
  135. #
  136. # User/Group: The name (or #number) of the user/group to run httpd as.
  137. # It is usually good practice to create a dedicated user and group for
  138. # running httpd, as with most system services.
  139. #
  140. User daemon
  141. Group daemon
  142. # 'Main' server configuration
  143. #
  144. # The directives in this section set up the values used by the 'main'
  145. # server, which responds to any requests that aren't handled by a
  146. # definition. These values also provide defaults for
  147. # any containers you may define later in the file.
  148. #
  149. # All of these directives may appear inside containers,
  150. # in which case these default settings will be overridden for the
  151. # virtual host being defined.
  152. #
  153.  
  154. #
  155. # ServerAdmin: Your address, where problems with the server should be
  156. # e-mailed. This address appears on some server-generated pages, such
  157. # as error documents. e.g. [email protected]
  158. #
  159. ServerAdmin [email protected]
  160.  
  161. #
  162. # ServerName gives the name and port that the server uses to identify itself.
  163. # This can often be determined automatically, but we recommend you specify
  164. # it explicitly to prevent problems during startup.
  165. #
  166. # If your host doesn't have a registered DNS name, enter its IP address here.
  167. #
  168. #ServerName pilarin.no-ip.org:80
  169.  
  170. #
  171. # DocumentRoot: The directory out of which you will serve your
  172. # documents. By default, all requests are taken from this directory, but
  173. # symbolic links and aliases may be used to point to other locations.
  174. #
  175. DocumentRoot "E:\Apache Software Foundation\Apache2.2\htdocs"
  176.  
  177. #
  178. # Each directory to which Apache has access can be configured with respect
  179. # to which services and features are allowed and/or disabled in that
  180. # directory (and its subdirectories).
  181. #
  182. # First, we configure the "default" to be a very restrictive set of
  183. # features.
  184. #
  185.  
  186. Options FollowSymLinks
  187. AllowOverride None
  188. Order deny,allow
  189. Deny from all
  190.  
  191.  
  192. #
  193. # Note that from this point forward you must specifically allow
  194. # particular features to be enabled - so if something's not working as
  195. # you might expect, make sure that you have specifically enabled it
  196. # below.
  197. #
  198.  
  199. #
  200. # This should be changed to whatever you set DocumentRoot to.
  201. #
  202.  
  203. #
Advertisement
Add Comment
Please, Sign In to add comment