Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2011
515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.99 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 "/opt/local/apache2" will be interpreted by the
  18. # server as "/opt/local/apache2/logs/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 "/opt/local/apache2"
  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 modules/mod_authn_file.so
  55. LoadModule authn_dbm_module modules/mod_authn_dbm.so
  56. LoadModule authn_anon_module modules/mod_authn_anon.so
  57. LoadModule authn_dbd_module modules/mod_authn_dbd.so
  58. LoadModule authn_default_module modules/mod_authn_default.so
  59. LoadModule authz_host_module modules/mod_authz_host.so
  60. LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
  61. LoadModule authz_user_module modules/mod_authz_user.so
  62. LoadModule authz_dbm_module modules/mod_authz_dbm.so
  63. LoadModule authz_owner_module modules/mod_authz_owner.so
  64. LoadModule authz_default_module modules/mod_authz_default.so
  65. LoadModule auth_basic_module modules/mod_auth_basic.so
  66. LoadModule auth_digest_module modules/mod_auth_digest.so
  67. LoadModule file_cache_module modules/mod_file_cache.so
  68. LoadModule cache_module modules/mod_cache.so
  69. LoadModule disk_cache_module modules/mod_disk_cache.so
  70. LoadModule mem_cache_module modules/mod_mem_cache.so
  71. LoadModule dbd_module modules/mod_dbd.so
  72. LoadModule dumpio_module modules/mod_dumpio.so
  73. LoadModule reqtimeout_module modules/mod_reqtimeout.so
  74. LoadModule ext_filter_module modules/mod_ext_filter.so
  75. LoadModule include_module modules/mod_include.so
  76. LoadModule filter_module modules/mod_filter.so
  77. LoadModule substitute_module modules/mod_substitute.so
  78. LoadModule deflate_module modules/mod_deflate.so
  79. LoadModule log_config_module modules/mod_log_config.so
  80. LoadModule log_forensic_module modules/mod_log_forensic.so
  81. LoadModule logio_module modules/mod_logio.so
  82. LoadModule env_module modules/mod_env.so
  83. LoadModule mime_magic_module modules/mod_mime_magic.so
  84. LoadModule cern_meta_module modules/mod_cern_meta.so
  85. LoadModule expires_module modules/mod_expires.so
  86. LoadModule headers_module modules/mod_headers.so
  87. LoadModule ident_module modules/mod_ident.so
  88. LoadModule usertrack_module modules/mod_usertrack.so
  89. LoadModule unique_id_module modules/mod_unique_id.so
  90. LoadModule setenvif_module modules/mod_setenvif.so
  91. LoadModule version_module modules/mod_version.so
  92. LoadModule proxy_module modules/mod_proxy.so
  93. LoadModule proxy_connect_module modules/mod_proxy_connect.so
  94. LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
  95. LoadModule proxy_http_module modules/mod_proxy_http.so
  96. LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
  97. LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
  98. LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
  99. LoadModule ssl_module modules/mod_ssl.so
  100. LoadModule mime_module modules/mod_mime.so
  101. LoadModule dav_module modules/mod_dav.so
  102. LoadModule status_module modules/mod_status.so
  103. LoadModule autoindex_module modules/mod_autoindex.so
  104. LoadModule asis_module modules/mod_asis.so
  105. LoadModule info_module modules/mod_info.so
  106. LoadModule cgi_module modules/mod_cgi.so
  107. LoadModule dav_fs_module modules/mod_dav_fs.so
  108. LoadModule vhost_alias_module modules/mod_vhost_alias.so
  109. LoadModule negotiation_module modules/mod_negotiation.so
  110. LoadModule dir_module modules/mod_dir.so
  111. LoadModule imagemap_module modules/mod_imagemap.so
  112. LoadModule actions_module modules/mod_actions.so
  113. LoadModule speling_module modules/mod_speling.so
  114. LoadModule userdir_module modules/mod_userdir.so
  115. LoadModule alias_module modules/mod_alias.so
  116. LoadModule rewrite_module modules/mod_rewrite.so
  117. LoadModule php5_module modules/libphp5.so
  118. AddType application/x-httpd-php .php
  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 www
  131. Group www
  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 you@example.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 www.example.com: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 "/sites"
  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 />
  180. Options FollowSymLinks
  181. AllowOverride None
  182. Order deny,allow
  183. Deny 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 "/sites">
  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.php index.html
  232. </IfModule>
  233.  
  234. #
  235. # The following lines prevent .htaccess, .htpasswd and .DS_Store files and
  236. # Mac resource forks and named forks from being viewed by Web clients.
  237. #
  238. <Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
  239. Order allow,deny
  240. Deny from all
  241. Satisfy All
  242. </Files>
  243. <Files "rsrc">
  244. Order allow,deny
  245. Deny from all
  246. Satisfy All
  247. </Files>
  248. <DirectoryMatch ".*\.\.namedfork">
  249. Order allow,deny
  250. Deny from all
  251. Satisfy All
  252. </DirectoryMatch>
  253.  
  254. #
  255. # ErrorLog: The location of the error log file.
  256. # If you do not specify an ErrorLog directive within a <VirtualHost>
  257. # container, error messages relating to that virtual host will be
  258. # logged here. If you *do* define an error logfile for a <VirtualHost>
  259. # container, that host's errors will be logged there and not here.
  260. #
  261. ErrorLog "logs/error_log"
  262.  
  263. #
  264. # LogLevel: Control the number of messages logged to the error_log.
  265. # Possible values include: debug, info, notice, warn, error, crit,
  266. # alert, emerg.
  267. #
  268. LogLevel warn
  269.  
  270. <IfModule log_config_module>
  271. #
  272. # The following directives define some format nicknames for use with
  273. # a CustomLog directive (see below).
  274. #
  275. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  276. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  277.  
  278. <IfModule logio_module>
  279. # You need to enable mod_logio.c to use %I and %O
  280. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  281. </IfModule>
  282.  
  283. #
  284. # The location and format of the access logfile (Common Logfile Format).
  285. # If you do not define any access logfiles within a <VirtualHost>
  286. # container, they will be logged here. Contrariwise, if you *do*
  287. # define per-<VirtualHost> access logfiles, transactions will be
  288. # logged therein and *not* in this file.
  289. #
  290. CustomLog "logs/access_log" common
  291.  
  292. #
  293. # If you prefer a logfile with access, agent, and referer information
  294. # (Combined Logfile Format) you can use the following directive.
  295. #
  296. #CustomLog "logs/access_log" combined
  297. </IfModule>
  298.  
  299. <IfModule alias_module>
  300. #
  301. # Redirect: Allows you to tell clients about documents that used to
  302. # exist in your server's namespace, but do not anymore. The client
  303. # will make a new request for the document at its new location.
  304. # Example:
  305. # Redirect permanent /foo http://www.example.com/bar
  306.  
  307. #
  308. # Alias: Maps web paths into filesystem paths and is used to
  309. # access content that does not live under the DocumentRoot.
  310. # Example:
  311. # Alias /webpath /full/filesystem/path
  312. #
  313. # If you include a trailing / on /webpath then the server will
  314. # require it to be present in the URL. You will also likely
  315. # need to provide a <Directory> section to allow access to
  316. # the filesystem path.
  317.  
  318. #
  319. # ScriptAlias: This controls which directories contain server scripts.
  320. # ScriptAliases are essentially the same as Aliases, except that
  321. # documents in the target directory are treated as applications and
  322. # run by the server when requested rather than as documents sent to the
  323. # client. The same rules about trailing "/" apply to ScriptAlias
  324. # directives as to Alias.
  325. #
  326. ScriptAlias /cgi-bin/ "/opt/local/apache2/cgi-bin/"
  327.  
  328. </IfModule>
  329.  
  330. <IfModule cgid_module>
  331. #
  332. # ScriptSock: On threaded servers, designate the path to the UNIX
  333. # socket used to communicate with the CGI daemon of mod_cgid.
  334. #
  335. #Scriptsock logs/cgisock
  336. </IfModule>
  337.  
  338. #
  339. # "/opt/local/apache2/cgi-bin" should be changed to whatever your ScriptAliased
  340. # CGI directory exists, if you have that configured.
  341. #
  342. <Directory "/opt/local/apache2/cgi-bin">
  343. AllowOverride None
  344. Options None
  345. Order allow,deny
  346. Allow from all
  347. </Directory>
  348.  
  349. #
  350. # DefaultType: the default MIME type the server will use for a document
  351. # if it cannot otherwise determine one, such as from filename extensions.
  352. # If your server contains mostly text or HTML documents, "text/plain" is
  353. # a good value. If most of your content is binary, such as applications
  354. # or images, you may want to use "application/octet-stream" instead to
  355. # keep browsers from trying to display binary files as though they are
  356. # text.
  357. #
  358. DefaultType text/plain
  359.  
  360. <IfModule mime_module>
  361. #
  362. # TypesConfig points to the file containing the list of mappings from
  363. # filename extension to MIME-type.
  364. #
  365. TypesConfig conf/mime.types
  366.  
  367. #
  368. # AddType allows you to add to or override the MIME configuration
  369. # file specified in TypesConfig for specific file types.
  370. #
  371. #AddType application/x-gzip .tgz
  372. #
  373. # AddEncoding allows you to have certain browsers uncompress
  374. # information on the fly. Note: Not all browsers support this.
  375. #
  376. #AddEncoding x-compress .Z
  377. #AddEncoding x-gzip .gz .tgz
  378. #
  379. # If the AddEncoding directives above are commented-out, then you
  380. # probably should define those extensions to indicate media types:
  381. #
  382. AddType application/x-compress .Z
  383. AddType application/x-gzip .gz .tgz
  384.  
  385. #
  386. # AddHandler allows you to map certain file extensions to "handlers":
  387. # actions unrelated to filetype. These can be either built into the server
  388. # or added with the Action directive (see below)
  389. #
  390. # To use CGI scripts outside of ScriptAliased directories:
  391. # (You will also need to add "ExecCGI" to the "Options" directive.)
  392. #
  393. #AddHandler cgi-script .cgi
  394.  
  395. # For type maps (negotiated resources):
  396. #AddHandler type-map var
  397.  
  398. #
  399. # Filters allow you to process content before it is sent to the client.
  400. #
  401. # To parse .shtml files for server-side includes (SSI):
  402. # (You will also need to add "Includes" to the "Options" directive.)
  403. #
  404. #AddType text/html .shtml
  405. #AddOutputFilter INCLUDES .shtml
  406. </IfModule>
  407.  
  408. #
  409. # The mod_mime_magic module allows the server to use various hints from the
  410. # contents of the file itself to determine its type. The MIMEMagicFile
  411. # directive tells the module where the hint definitions are located.
  412. #
  413. #MIMEMagicFile conf/magic
  414.  
  415. #
  416. # Customizable error responses come in three flavors:
  417. # 1) plain text 2) local redirects 3) external redirects
  418. #
  419. # Some examples:
  420. #ErrorDocument 500 "The server made a boo boo."
  421. #ErrorDocument 404 /missing.html
  422. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  423. #ErrorDocument 402 http://www.example.com/subscription_info.html
  424. #
  425.  
  426. #
  427. # EnableMMAP and EnableSendfile: On systems that support it,
  428. # memory-mapping or the sendfile syscall is used to deliver
  429. # files. This usually improves server performance, but must
  430. # be turned off when serving from networked-mounted
  431. # filesystems or if support for these functions is otherwise
  432. # broken on your system.
  433. #
  434. #EnableMMAP off
  435. #EnableSendfile off
  436.  
  437. # Supplemental configuration
  438. #
  439. # The configuration files in the conf/extra/ directory can be
  440. # included to add extra features or to modify the default configuration of
  441. # the server, or you may simply copy their contents here and change as
  442. # necessary.
  443.  
  444. # Server-pool management (MPM specific)
  445. #Include conf/extra/httpd-mpm.conf
  446.  
  447. # Multi-language error messages
  448. #Include conf/extra/httpd-multilang-errordoc.conf
  449.  
  450. # Fancy directory listings
  451. #Include conf/extra/httpd-autoindex.conf
  452.  
  453. # Language settings
  454. #Include conf/extra/httpd-languages.conf
  455.  
  456. # User home directories
  457. #Include conf/extra/httpd-userdir.conf
  458.  
  459. # Real-time info on requests and configuration
  460. #Include conf/extra/httpd-info.conf
  461.  
  462. # Virtual hosts
  463. #Include conf/extra/httpd-vhosts.conf
  464.  
  465. # Local access to the Apache HTTP Server Manual
  466. #Include conf/extra/httpd-manual.conf
  467.  
  468. # Distributed authoring and versioning (WebDAV)
  469. #Include conf/extra/httpd-dav.conf
  470.  
  471. # Various default settings
  472. #Include conf/extra/httpd-default.conf
  473.  
  474. # Secure (SSL/TLS) connections
  475. #Include conf/extra/httpd-ssl.conf
  476. #
  477. # Note: The following must must be present to support
  478. # starting without SSL on platforms with no /dev/random equivalent
  479. # but a statically compiled-in mod_ssl.
  480. #
  481. <IfModule ssl_module>
  482. SSLRandomSeed startup builtin
  483. SSLRandomSeed connect builtin
  484. </IfModule>
  485.  
  486. Include conf/extra/mod_php.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement