Advertisement
Guest User

httpd.conf

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