Advertisement
Guest User

Apache httpd.conf

a guest
Apr 16th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.14 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 <URL:http://httpd.apache.org/docs/2.2> for detailed information.
  5. # In particular, see
  6. # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
  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 "D:/xampp/apache" will be interpreted by the
  18. # server as "D:/xampp/apache/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 "D:/xampp/apache"
  36.  
  37. #
  38. # Listen: Allows you to bind Apache to specific IP addresses and/or
  39. # ports, instead of the default. See also the <VirtualHost>
  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 0.0.0.0:80
  46. #Listen [::]:80
  47. Listen 8080
  48.  
  49. # Default charset UTF8
  50. # AddDefaultCharset utf-8
  51.  
  52. #
  53. # Dynamic Shared Object (DSO) Support
  54. #
  55. # To be able to use the functionality of a module which was built as a DSO you
  56. # have to place corresponding `LoadModule' lines at this location so the
  57. # directives contained in it are actually available _before_ they are used.
  58. # Statically compiled modules (those listed by `httpd -l') do not need
  59. # to be loaded here.
  60. #
  61. # Example:
  62. # LoadModule foo_module modules/mod_foo.so
  63. #
  64.  
  65. LoadModule access_compat_module modules/mod_access_compat.so
  66. LoadModule actions_module modules/mod_actions.so
  67. LoadModule alias_module modules/mod_alias.so
  68. LoadModule allowmethods_module modules/mod_allowmethods.so
  69. LoadModule asis_module modules/mod_asis.so
  70. LoadModule auth_basic_module modules/mod_auth_basic.so
  71. #LoadModule auth_digest_module modules/mod_auth_digest.so
  72. #LoadModule authn_anon_module modules/mod_authn_anon.so
  73. LoadModule authn_core_module modules/mod_authn_core.so
  74. #LoadModule authn_dbd_module modules/mod_authn_dbd.so
  75. #LoadModule authn_dbm_module modules/mod_authn_dbm.so
  76. LoadModule authn_file_module modules/mod_authn_file.so
  77. #LoadModule authn_socache_module modules/mod_authn_socache.so
  78. #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
  79. LoadModule authz_core_module modules/mod_authz_core.so
  80. #LoadModule authz_dbd_module modules/mod_authz_dbd.so
  81. #LoadModule authz_dbm_module modules/mod_authz_dbm.so
  82. LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
  83. LoadModule authz_host_module modules/mod_authz_host.so
  84. #LoadModule authz_owner_module modules/mod_authz_owner.so
  85. LoadModule authz_user_module modules/mod_authz_user.so
  86. LoadModule autoindex_module modules/mod_autoindex.so
  87. #LoadModule bucketeer_module modules/mod_bucketeer.so
  88. #LoadModule cache_module modules/mod_cache.so
  89. #LoadModule case_filter_module modules/mod_case_filter.so
  90. #LoadModule case_filter_in_module modules/mod_case_filter_in.so
  91. #LoadModule cern_meta_module modules/mod_cern_meta.so
  92. LoadModule cgi_module modules/mod_cgi.so
  93. #LoadModule charset_lite_module modules/mod_charset_lite.so
  94. #LoadModule dav_module modules/mod_dav.so
  95. #LoadModule dav_fs_module modules/mod_dav_fs.so
  96. LoadModule dav_lock_module modules/mod_dav_lock.so
  97. #LoadModule dbd_module modules/mod_dbd.so
  98. #LoadModule deflate_module modules/mod_deflate.so
  99. LoadModule dir_module modules/mod_dir.so
  100. #LoadModule disk_cache_module modules/mod_disk_cache.so
  101. #LoadModule dumpio_module modules/mod_dumpio.so
  102. #LoadModule echo_module modules/mod_echo.so
  103. LoadModule env_module modules/mod_env.so
  104. #LoadModule example_module modules/mod_example.so
  105. #LoadModule expires_module modules/mod_expires.so
  106. #LoadModule ext_filter_module modules/mod_ext_filter.so
  107. #LoadModule fcgid_module modules/mod_fcgid.so # did not work at runtime
  108. #LoadModule file_cache_module modules/mod_file_cache.so
  109. #LoadModule filter_module modules/mod_filter.so
  110. LoadModule headers_module modules/mod_headers.so
  111. #LoadModule ident_module modules/mod_ident.so
  112. #LoadModule imagemap_module modules/mod_imagemap.so
  113. LoadModule include_module modules/mod_include.so
  114. LoadModule info_module modules/mod_info.so
  115. LoadModule isapi_module modules/mod_isapi.so
  116. #LoadModule ldap_module modules/mod_ldap.so
  117. #LoadModule logio_module modules/mod_logio.so
  118. LoadModule log_config_module modules/mod_log_config.so
  119. #LoadModule log_forensic_module modules/mod_log_forensic.so
  120. LoadModule cache_disk_module modules/mod_cache_disk.so
  121. LoadModule mime_module modules/mod_mime.so
  122. #LoadModule mime_magic_module modules/mod_mime_magic.so
  123. LoadModule negotiation_module modules/mod_negotiation.so
  124. LoadModule proxy_module modules/mod_proxy.so
  125. LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
  126. #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
  127. #LoadModule proxy_connect_module modules/mod_proxy_connect.so
  128. #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
  129. #LoadModule proxy_http_module modules/mod_proxy_http.so
  130. LoadModule rewrite_module modules/mod_rewrite.so
  131. LoadModule setenvif_module modules/mod_setenvif.so
  132. #LoadModule speling_module modules/mod_speling.so
  133. LoadModule ssl_module modules/mod_ssl.so
  134. LoadModule status_module modules/mod_status.so
  135. #LoadModule substitute_module modules/mod_substitute.so
  136. #LoadModule unique_id_module modules/mod_unique_id.so
  137. #LoadModule userdir_module modules/mod_userdir.so
  138. #LoadModule usertrack_module modules/mod_usertrack.so
  139. #LoadModule version_module modules/mod_version.so
  140. #LoadModule vhost_alias_module modules/mod_vhost_alias.so
  141.  
  142. <IfModule !mpm_netware_module>
  143. <IfModule !mpm_winnt_module>
  144. #
  145. # If you wish httpd to run as a different user or group, you must run
  146. # httpd as root initially and it will switch.
  147. #
  148. # User/Group: The name (or #number) of the user/group to run httpd as.
  149. # It is usually good practice to create a dedicated user and group for
  150. # running httpd, as with most system services.
  151. #
  152. User daemon
  153. Group daemon
  154.  
  155. </IfModule>
  156. </IfModule>
  157.  
  158. # 'Main' server configuration
  159. #
  160. # The directives in this section set up the values used by the 'main'
  161. # server, which responds to any requests that aren't handled by a
  162. # <VirtualHost> definition. These values also provide defaults for
  163. # any <VirtualHost> containers you may define later in the file.
  164. #
  165. # All of these directives may appear inside <VirtualHost> containers,
  166. # in which case these default settings will be overridden for the
  167. # virtual host being defined.
  168. #
  169.  
  170. #
  171. # ServerAdmin: Your address, where problems with the server should be
  172. # e-mailed. This address appears on some server-generated pages, such
  173. # as error documents. e.g. [email protected]
  174. #
  175. ServerAdmin postmaster@localhost
  176.  
  177. #
  178. # ServerName gives the name and port that the server uses to identify itself.
  179. # This can often be determined automatically, but we recommend you specify
  180. # it explicitly to prevent problems during startup.
  181. #
  182. # If your host doesn't have a registered DNS name, enter its IP address here.
  183. #
  184. ServerName localhost:80
  185.  
  186. #
  187. # DocumentRoot: The directory out of which you will serve your
  188. # documents. By default, all requests are taken from this directory, but
  189. # symbolic links and aliases may be used to point to other locations.
  190. #
  191. DocumentRoot "D:/xampp/htdocs"
  192.  
  193. #
  194. # Each directory to which Apache has access can be configured with respect
  195. # to which services and features are allowed and/or disabled in that
  196. # directory (and its subdirectories).
  197. #
  198. # First, we configure the "default" to be a very restrictive set of
  199. # features.
  200. #
  201. <Directory />
  202. AllowOverride none
  203. Require all denied
  204. </Directory>
  205.  
  206.  
  207. # XAMPP: We disable operating system specific optimizations for a listening
  208. # socket by the http protocol here. IE 64 bit make problems without this.
  209. AcceptFilter http none
  210.  
  211. #
  212. # Note that from this point forward you must specifically allow
  213. # particular features to be enabled - so if something's not working as
  214. # you might expect, make sure that you have specifically enabled it
  215. # below.
  216. #
  217.  
  218. #
  219. # This should be changed to whatever you set DocumentRoot to.
  220. #
  221. <Directory "D:/xampp/htdocs">
  222. #
  223. # Possible values for the Options directive are "None", "All",
  224. # or any combination of:
  225. # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
  226. #
  227. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  228. # doesn't give it to you.
  229. #
  230. # The Options directive is both complicated and important. Please see
  231. # http://httpd.apache.org/docs/2.2/mod/core.html#options
  232. # for more information.
  233. #
  234. Options Indexes FollowSymLinks Includes ExecCGI
  235.  
  236. #
  237. # AllowOverride controls what directives may be placed in .htaccess files.
  238. # It can be "All", "None", or any combination of the keywords:
  239. # Options FileInfo AuthConfig Limit
  240. #
  241. AllowOverride All
  242.  
  243. #
  244. # Controls who can get stuff from this server.
  245. #
  246. Require all granted
  247.  
  248. </Directory>
  249.  
  250. #
  251. # DirectoryIndex: sets the file that Apache will serve if a directory
  252. # is requested.
  253. #
  254. <IfModule dir_module>
  255. DirectoryIndex index.php index.pl index.cgi index.asp index.shtml index.html index.htm \
  256. default.php default.pl default.cgi default.asp default.shtml default.html default.htm \
  257. home.php home.pl home.cgi home.asp home.shtml home.html home.htm
  258. </IfModule>
  259.  
  260. #
  261. # The following lines prevent .htaccess and .htpasswd files from being
  262. # viewed by Web clients.
  263. #
  264. <Files ".ht*">
  265. Require all denied
  266. </Files>
  267.  
  268. #
  269. # ErrorLog: The location of the error log file.
  270. # If you do not specify an ErrorLog directive within a <VirtualHost>
  271. # container, error messages relating to that virtual host will be
  272. # logged here. If you *do* define an error logfile for a <VirtualHost>
  273. # container, that host's errors will be logged there and not here.
  274. #
  275. ErrorLog "logs/error.log"
  276.  
  277. #ScriptLog "logs/cgi.log"
  278.  
  279. #
  280. # LogLevel: Control the number of messages logged to the error_log.
  281. # Possible values include: debug, info, notice, warn, error, crit,
  282. # alert, emerg.
  283. #
  284. LogLevel warn
  285.  
  286. <IfModule log_config_module>
  287. #
  288. # The following directives define some format nicknames for use with
  289. # a CustomLog directive (see below).
  290. #
  291. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  292. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  293.  
  294. <IfModule logio_module>
  295. # You need to enable mod_logio.c to use %I and %O
  296. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  297. </IfModule>
  298.  
  299. #
  300. # The location and format of the access logfile (Common Logfile Format).
  301. # If you do not define any access logfiles within a <VirtualHost>
  302. # container, they will be logged here. Contrariwise, if you *do*
  303. # define per-<VirtualHost> access logfiles, transactions will be
  304. # logged therein and *not* in this file.
  305. #
  306. #CustomLog "logs/access.log" common
  307.  
  308. #
  309. # If you prefer a logfile with access, agent, and referer information
  310. # (Combined Logfile Format) you can use the following directive.
  311. #
  312. CustomLog "logs/access.log" combined
  313. </IfModule>
  314.  
  315. <IfModule alias_module>
  316. #
  317. # Redirect: Allows you to tell clients about documents that used to
  318. # exist in your server's namespace, but do not anymore. The client
  319. # will make a new request for the document at its new location.
  320. # Example:
  321. # Redirect permanent /foo http://localhost/bar
  322.  
  323. #
  324. # Alias: Maps web paths into filesystem paths and is used to
  325. # access content that does not live under the DocumentRoot.
  326. # Example:
  327. # Alias /webpath /full/filesystem/path
  328. #
  329. # If you include a trailing / on /webpath then the server will
  330. # require it to be present in the URL. You will also likely
  331. # need to provide a <Directory> section to allow access to
  332. # the filesystem path.
  333.  
  334. #
  335. # ScriptAlias: This controls which directories contain server scripts.
  336. # ScriptAliases are essentially the same as Aliases, except that
  337. # documents in the target directory are treated as applications and
  338. # run by the server when requested rather than as documents sent to the
  339. # client. The same rules about trailing "/" apply to ScriptAlias
  340. # directives as to Alias.
  341. #
  342. ScriptAlias /cgi-bin/ "D:/xampp/cgi-bin/"
  343.  
  344. </IfModule>
  345.  
  346. <IfModule cgid_module>
  347. #
  348. # ScriptSock: On threaded servers, designate the path to the UNIX
  349. # socket used to communicate with the CGI daemon of mod_cgid.
  350. #
  351. #Scriptsock "logs/cgi.sock"
  352. </IfModule>
  353.  
  354. #
  355. # "D:/xampp/cgi-bin" should be changed to whatever your ScriptAliased
  356. # CGI directory exists, if you have that configured.
  357. #
  358. <Directory "D:/xampp/cgi-bin">
  359. AllowOverride None
  360. Options None
  361. Require all granted
  362. </Directory>
  363.  
  364.  
  365. <IfModule mime_module>
  366. #
  367. # TypesConfig points to the file containing the list of mappings from
  368. # filename extension to MIME-type.
  369. #
  370. TypesConfig "conf/mime.types"
  371.  
  372. #
  373. # AddType allows you to add to or override the MIME configuration
  374. # file specified in TypesConfig for specific file types.
  375. #
  376. #AddType application/x-gzip .tgz
  377. #
  378. # AddEncoding allows you to have certain browsers uncompress
  379. # information on the fly. Note: Not all browsers support this.
  380. #
  381. #AddEncoding x-compress .Z
  382. #AddEncoding x-gzip .gz .tgz
  383. #
  384. # If the AddEncoding directives above are commented-out, then you
  385. # probably should define those extensions to indicate media types:
  386. #
  387. AddType application/x-compress .Z
  388. AddType application/x-gzip .gz .tgz
  389.  
  390. #
  391. # AddHandler allows you to map certain file extensions to "handlers":
  392. # actions unrelated to filetype. These can be either built into the server
  393. # or added with the Action directive (see below)
  394. #
  395. # To use CGI scripts outside of ScriptAliased directories:
  396. # (You will also need to add "ExecCGI" to the "Options" directive.)
  397. #
  398. AddHandler cgi-script .cgi .pl .asp
  399.  
  400. # For type maps (negotiated resources):
  401. #AddHandler type-map var
  402.  
  403. #
  404. # Filters allow you to process content before it is sent to the client.
  405. #
  406. # To parse .shtml files for server-side includes (SSI):
  407. # (You will also need to add "Includes" to the "Options" directive.)
  408. #
  409. AddType text/html .shtml
  410. AddOutputFilter INCLUDES .shtml
  411. </IfModule>
  412.  
  413. <IfModule mime_magic_module>
  414. #
  415. # The mod_mime_magic module allows the server to use various hints from the
  416. # contents of the file itself to determine its type. The MIMEMagicFile
  417. # directive tells the module where the hint definitions are located.
  418. #
  419. MIMEMagicFile "conf/magic"
  420. </IfModule>
  421.  
  422. #
  423. # Customizable error responses come in three flavors:
  424. # 1) plain text 2) local redirects 3) external redirects
  425. #
  426. # Some examples:
  427. #ErrorDocument 500 "The server made a boo boo."
  428. #ErrorDocument 404 /missing.html
  429. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  430. #ErrorDocument 402 http://localhost/subscription_info.html
  431. #
  432.  
  433. #
  434. # EnableMMAP and EnableSendfile: On systems that support it,
  435. # memory-mapping or the sendfile syscall is used to deliver
  436. # files. This usually improves server performance, but must
  437. # be turned off when serving from networked-mounted
  438. # filesystems or if support for these functions is otherwise
  439. # broken on your system.
  440. #
  441. #EnableMMAP off
  442. #EnableSendfile off
  443.  
  444. # Supplemental configuration
  445. #
  446. # The configuration files in the conf/extra/ directory can be
  447. # included to add extra features or to modify the default configuration of
  448. # the server, or you may simply copy their contents here and change as
  449. # necessary.
  450.  
  451. # XAMPP specific settings
  452. Include "conf/extra/httpd-xampp.conf"
  453.  
  454. # Server-pool management (MPM specific)
  455. Include "conf/extra/httpd-mpm.conf"
  456.  
  457. # Multi-language error messages
  458. Include "conf/extra/httpd-multilang-errordoc.conf"
  459.  
  460. # Fancy directory listings
  461. Include "conf/extra/httpd-autoindex.conf"
  462.  
  463. # Language settings
  464. Include "conf/extra/httpd-languages.conf"
  465.  
  466. # User home directories
  467. Include "conf/extra/httpd-userdir.conf"
  468.  
  469. # Real-time info on requests and configuration
  470. Include "conf/extra/httpd-info.conf"
  471.  
  472. # Virtual hosts
  473. Include "conf/extra/httpd-vhosts.conf"
  474.  
  475. # Distributed authoring and versioning (WebDAV)
  476. # Attention! WEB_DAV is a security risk without a new userspecific configuration for a secure authentifcation
  477. # Include "conf/extra/httpd-dav.conf"
  478.  
  479. # Implements a proxy/gateway for Apache.
  480. Include "conf/extra/httpd-proxy.conf"
  481.  
  482. # Various default settings
  483. Include "conf/extra/httpd-default.conf"
  484.  
  485. # Secure (SSL/TLS) connections
  486. Include "conf/extra/httpd-ssl.conf"
  487. #
  488. # Note: The following must must be present to support
  489. # starting without SSL on platforms with no /dev/random equivalent
  490. # but a statically compiled-in mod_ssl.
  491. #
  492. <IfModule ssl_module>
  493. SSLRandomSeed startup builtin
  494. SSLRandomSeed connect builtin
  495. </IfModule>
  496.  
  497. # Configure mod_proxy_html to understand HTML4/XHTML1
  498. #<IfModule proxy_html_module>
  499. #Include etc/extra/proxy-html.conf
  500. #</IfModule>
  501.  
  502. # AJP13 Proxy
  503. <IfModule mod_proxy.c>
  504. <IfModule mod_proxy_ajp.c>
  505. Include "conf/extra/httpd-ajp.conf"
  506. </IfModule>
  507. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement