Advertisement
Guest User

faulty http.conf?

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