Advertisement
Guest User

Untitled

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