Advertisement
gdhami

httpd.conf

Oct 3rd, 2013
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 37.70 KB | None | 0 0
  1. #
  2. # This is the main Apache 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. #
  10. # Do NOT simply read the instructions in here without understanding
  11. # what they do.  They're here only as hints or reminders.  If you are unsure
  12. # consult the online docs. You have been warned.  
  13. #
  14. # The configuration directives are grouped into three basic sections:
  15. #  1. Directives that control the operation of the Apache server process as a
  16. #     whole (the 'global environment').
  17. #  2. Directives that define the parameters of the 'main' or 'default' server,
  18. #     which responds to requests that aren't handled by a virtual host.
  19. #     These directives also provide default values for the settings
  20. #     of all virtual hosts.
  21. #  3. Settings for virtual hosts, which allow Web requests to be sent to
  22. #     different IP addresses or hostnames and have them handled by the
  23. #     same Apache server process.
  24. #
  25. # Configuration and logfile names: If the filenames you specify for many
  26. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  27. # server will use that explicit path.  If the filenames do *not* begin
  28. # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
  29. # with ServerRoot set to "/etc/httpd" will be interpreted by the
  30. # server as "/etc/httpd/logs/foo.log".
  31. #
  32.  
  33. ### Section 1: Global Environment
  34. #
  35. # The directives in this section affect the overall operation of Apache,
  36. # such as the number of concurrent requests it can handle or where it
  37. # can find its configuration files.
  38. #
  39.  
  40. #
  41. # Don't give away too much information about all the subcomponents
  42. # we are running.  Comment out this line if you don't mind remote sites
  43. # finding out what major optional modules you are running
  44. ServerTokens OS
  45.  
  46. #
  47. # ServerRoot: The top of the directory tree under which the server's
  48. # configuration, error, and log files are kept.
  49. #
  50. # NOTE!  If you intend to place this on an NFS (or otherwise network)
  51. # mounted filesystem then please read the LockFile documentation
  52. # (available at <URL:http://httpd.apache.org/docs/2.2/mod/mpm_common.html#lockfile>);
  53. # you will save yourself a lot of trouble.
  54. #
  55. # Do NOT add a slash at the end of the directory path.
  56. #
  57. ServerRoot "/etc/httpd"
  58.  
  59. #
  60. # PidFile: The file in which the server should record its process
  61. # identification number when it starts.  Note the PIDFILE variable in
  62. # /etc/sysconfig/httpd must be set appropriately if this location is
  63. # changed.
  64. #
  65. PidFile run/httpd.pid
  66.  
  67. #
  68. # Timeout: The number of seconds before receives and sends time out.
  69. #
  70. Timeout 60
  71.  
  72. #
  73. # KeepAlive: Whether or not to allow persistent connections (more than
  74. # one request per connection). Set to "Off" to deactivate.
  75. #
  76. KeepAlive Off
  77.  
  78. #
  79. # MaxKeepAliveRequests: The maximum number of requests to allow
  80. # during a persistent connection. Set to 0 to allow an unlimited amount.
  81. # We recommend you leave this number high, for maximum performance.
  82. #
  83. MaxKeepAliveRequests 100
  84.  
  85. #
  86. # KeepAliveTimeout: Number of seconds to wait for the next request from the
  87. # same client on the same connection.
  88. #
  89. KeepAliveTimeout 15
  90.  
  91. ##
  92. ## Server-Pool Size Regulation (MPM specific)
  93. ##
  94.  
  95. # prefork MPM
  96. # StartServers: number of server processes to start
  97. # MinSpareServers: minimum number of server processes which are kept spare
  98. # MaxSpareServers: maximum number of server processes which are kept spare
  99. # ServerLimit: maximum value for MaxClients for the lifetime of the server
  100. # MaxClients: maximum number of server processes allowed to start
  101. # MaxRequestsPerChild: maximum number of requests a server process serves
  102. <IfModule prefork.c>
  103. StartServers       8
  104. MinSpareServers    5
  105. MaxSpareServers   20
  106. ServerLimit      256
  107. MaxClients       256
  108. MaxRequestsPerChild  4000
  109. </IfModule>
  110.  
  111. # worker MPM
  112. # StartServers: initial number of server processes to start
  113. # MaxClients: maximum number of simultaneous client connections
  114. # MinSpareThreads: minimum number of worker threads which are kept spare
  115. # MaxSpareThreads: maximum number of worker threads which are kept spare
  116. # ThreadsPerChild: constant number of worker threads in each server process
  117. # MaxRequestsPerChild: maximum number of requests a server process serves
  118. <IfModule worker.c>
  119. StartServers         4
  120. MaxClients         300
  121. MinSpareThreads     25
  122. MaxSpareThreads     75
  123. ThreadsPerChild     25
  124. MaxRequestsPerChild  0
  125. </IfModule>
  126.  
  127. #
  128. # Listen: Allows you to bind Apache to specific IP addresses and/or
  129. # ports, in addition to the default. See also the <VirtualHost>
  130. # directive.
  131. #
  132. # Change this to Listen on specific IP addresses as shown below to
  133. # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
  134. #
  135. #Listen 12.34.56.78:80
  136. Listen 80
  137.  
  138. #
  139. # Dynamic Shared Object (DSO) Support
  140. #
  141. # To be able to use the functionality of a module which was built as a DSO you
  142. # have to place corresponding `LoadModule' lines at this location so the
  143. # directives contained in it are actually available _before_ they are used.
  144. # Statically compiled modules (those listed by `httpd -l') do not need
  145. # to be loaded here.
  146. #
  147. # Example:
  148. # LoadModule foo_module modules/mod_foo.so
  149. #
  150. LoadModule auth_basic_module modules/mod_auth_basic.so
  151. LoadModule auth_digest_module modules/mod_auth_digest.so
  152. LoadModule authn_file_module modules/mod_authn_file.so
  153. LoadModule authn_alias_module modules/mod_authn_alias.so
  154. LoadModule authn_anon_module modules/mod_authn_anon.so
  155. LoadModule authn_dbm_module modules/mod_authn_dbm.so
  156. LoadModule authn_default_module modules/mod_authn_default.so
  157. LoadModule authz_host_module modules/mod_authz_host.so
  158. LoadModule authz_user_module modules/mod_authz_user.so
  159. LoadModule authz_owner_module modules/mod_authz_owner.so
  160. LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
  161. LoadModule authz_dbm_module modules/mod_authz_dbm.so
  162. LoadModule authz_default_module modules/mod_authz_default.so
  163. LoadModule ldap_module modules/mod_ldap.so
  164. LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
  165. LoadModule include_module modules/mod_include.so
  166. LoadModule log_config_module modules/mod_log_config.so
  167. LoadModule logio_module modules/mod_logio.so
  168. LoadModule env_module modules/mod_env.so
  169. LoadModule ext_filter_module modules/mod_ext_filter.so
  170. LoadModule mime_magic_module modules/mod_mime_magic.so
  171. LoadModule expires_module modules/mod_expires.so
  172. LoadModule deflate_module modules/mod_deflate.so
  173. LoadModule headers_module modules/mod_headers.so
  174. LoadModule usertrack_module modules/mod_usertrack.so
  175. LoadModule setenvif_module modules/mod_setenvif.so
  176. LoadModule mime_module modules/mod_mime.so
  177. LoadModule dav_module modules/mod_dav.so
  178. LoadModule status_module modules/mod_status.so
  179. LoadModule autoindex_module modules/mod_autoindex.so
  180. LoadModule info_module modules/mod_info.so
  181. LoadModule dav_fs_module modules/mod_dav_fs.so
  182. LoadModule vhost_alias_module modules/mod_vhost_alias.so
  183. LoadModule negotiation_module modules/mod_negotiation.so
  184. LoadModule dir_module modules/mod_dir.so
  185. LoadModule actions_module modules/mod_actions.so
  186. LoadModule speling_module modules/mod_speling.so
  187. LoadModule userdir_module modules/mod_userdir.so
  188. LoadModule alias_module modules/mod_alias.so
  189. LoadModule substitute_module modules/mod_substitute.so
  190. LoadModule rewrite_module modules/mod_rewrite.so
  191. LoadModule proxy_module modules/mod_proxy.so
  192. LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
  193. LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
  194. LoadModule proxy_http_module modules/mod_proxy_http.so
  195. LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
  196. LoadModule proxy_connect_module modules/mod_proxy_connect.so
  197. LoadModule cache_module modules/mod_cache.so
  198. LoadModule suexec_module modules/mod_suexec.so
  199. LoadModule disk_cache_module modules/mod_disk_cache.so
  200. LoadModule cgi_module modules/mod_cgi.so
  201. LoadModule version_module modules/mod_version.so
  202.  
  203. #
  204. # The following modules are not loaded by default:
  205. #
  206. #LoadModule asis_module modules/mod_asis.so
  207. #LoadModule authn_dbd_module modules/mod_authn_dbd.so
  208. #LoadModule cern_meta_module modules/mod_cern_meta.so
  209. #LoadModule cgid_module modules/mod_cgid.so
  210. #LoadModule dbd_module modules/mod_dbd.so
  211. #LoadModule dumpio_module modules/mod_dumpio.so
  212. #LoadModule filter_module modules/mod_filter.so
  213. #LoadModule ident_module modules/mod_ident.so
  214. #LoadModule log_forensic_module modules/mod_log_forensic.so
  215. #LoadModule unique_id_module modules/mod_unique_id.so
  216. #LoadModule file_cache_module modules/mod_file_cache.so
  217. LoadModule xsendfile_module   /usr/lib64/httpd/modules/mod_xsendfile.so
  218. #
  219.  
  220. #
  221. # Load config files from the config directory "/etc/httpd/conf.d".
  222. #
  223. Include conf.d/*.conf
  224.  
  225. #
  226. # ExtendedStatus controls whether Apache will generate "full" status
  227. # information (ExtendedStatus On) or just basic information (ExtendedStatus
  228. # Off) when the "server-status" handler is called. The default is Off.
  229. #
  230. #ExtendedStatus On
  231.  
  232. #
  233. # If you wish httpd to run as a different user or group, you must run
  234. # httpd as root initially and it will switch.  
  235. #
  236. # User/Group: The name (or #number) of the user/group to run httpd as.
  237. #  . On SCO (ODT 3) use "User nouser" and "Group nogroup".
  238. #  . On HPUX you may not be able to use shared memory as nobody, and the
  239. #    suggested workaround is to create a user www and use that user.
  240. #  NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
  241. #  when the value of (unsigned)Group is above 60000;
  242. #  don't use Group #-1 on these systems!
  243. #
  244. User apache
  245. Group apache
  246.  
  247. ### Section 2: 'Main' server configuration
  248. #
  249. # The directives in this section set up the values used by the 'main'
  250. # server, which responds to any requests that aren't handled by a
  251. # <VirtualHost> definition.  These values also provide defaults for
  252. # any <VirtualHost> containers you may define later in the file.
  253. #
  254. # All of these directives may appear inside <VirtualHost> containers,
  255. # in which case these default settings will be overridden for the
  256. # virtual host being defined.
  257. #
  258.  
  259. #
  260. # ServerAdmin: Your address, where problems with the server should be
  261. # e-mailed.  This address appears on some server-generated pages, such
  262. # as error documents.  e.g. admin@your-domain.com
  263. #
  264. ServerAdmin root@localhost
  265.  
  266. #
  267. # ServerName gives the name and port that the server uses to identify itself.
  268. # This can often be determined automatically, but we recommend you specify
  269. # it explicitly to prevent problems during startup.
  270. #
  271. # If this is not set to valid DNS name for your host, server-generated
  272. # redirections will not work.  See also the UseCanonicalName directive.
  273. #
  274. # If your host doesn't have a registered DNS name, enter its IP address here.
  275. # You will have to access it by its address anyway, and this will make
  276. # redirections work in a sensible way.
  277. #
  278. #ServerName www.example.com:80
  279.  
  280. ServerName www.domain1.com:80
  281.  
  282. #
  283. # UseCanonicalName: Determines how Apache constructs self-referencing
  284. # URLs and the SERVER_NAME and SERVER_PORT variables.
  285. # When set "Off", Apache will use the Hostname and Port supplied
  286. # by the client.  When set "On", Apache will use the value of the
  287. # ServerName directive.
  288. #
  289. UseCanonicalName Off
  290.  
  291. #
  292. # DocumentRoot: The directory out of which you will serve your
  293. # documents. By default, all requests are taken from this directory, but
  294. # symbolic links and aliases may be used to point to other locations.
  295. #
  296. DocumentRoot "/var/www/html"
  297.  
  298. #
  299. # Each directory to which Apache has access can be configured with respect
  300. # to which services and features are allowed and/or disabled in that
  301. # directory (and its subdirectories).
  302. #
  303. # First, we configure the "default" to be a very restrictive set of
  304. # features.  
  305. #
  306. <Directory />
  307.     Options FollowSymLinks
  308.     AllowOverride None
  309. </Directory>
  310.  
  311. #
  312. # Note that from this point forward you must specifically allow
  313. # particular features to be enabled - so if something's not working as
  314. # you might expect, make sure that you have specifically enabled it
  315. # below.
  316. #
  317.  
  318. #
  319. # This should be changed to whatever you set DocumentRoot to.
  320. #
  321. <Directory "/var/www/html">
  322.  
  323. #
  324. # Possible values for the Options directive are "None", "All",
  325. # or any combination of:
  326. #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
  327. #
  328. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  329. # doesn't give it to you.
  330. #
  331. # The Options directive is both complicated and important.  Please see
  332. # http://httpd.apache.org/docs/2.2/mod/core.html#options
  333. # for more information.
  334. #
  335.     # Options Indexes FollowSymLinks
  336.     Options +FollowSymlinks
  337.  
  338. #
  339. # AllowOverride controls what directives may be placed in .htaccess files.
  340. # It can be "All", "None", or any combination of the keywords:
  341. #   Options FileInfo AuthConfig Limit
  342. #
  343.     AllowOverride All
  344.  
  345. #
  346. # Controls who can get stuff from this server.
  347. #
  348.     Order allow,deny
  349.     Allow from all
  350.  
  351.  
  352.     <IfModule mod_rewrite.c>
  353.         RewriteEngine On
  354.         # Options +FollowSymlinks
  355.         RewriteBase /
  356.  
  357.         # Generic non-www to www redirect
  358.         RewriteCond %{HTTP_HOST} !^www\. [NC]
  359.         RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [L,R=301]
  360.  
  361.         # Force SSL (Generic)
  362.         RewriteCond %{HTTPS} off
  363.         RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
  364.  
  365.  
  366.         # RewriteLog "/var/www/my-application/_framework/application/logs/rewrite.log"
  367.         # RewriteLogLevel 5
  368.  
  369.         # Deny parent framing
  370.         Header append x-frame-options "DENY"
  371.  
  372.         # Removes access to the system folder by users.
  373.         # Additionally this will allow you to create a System.php controller,
  374.         # previously this would not have been possible.
  375.         # 'system' can be replaced if you have renamed your system folder.
  376.         RewriteCond %{REQUEST_URI} ^system.*
  377.         RewriteRule ^(.*)$ /index.php?/$1 [L]
  378.  
  379.         # When your application folder isn't in the system folder
  380.         # This snippet prevents user access to the application folder
  381.         # Submitted by: Fabdrol
  382.         # Rename 'application' to your applications folder name.
  383.         RewriteCond %{REQUEST_URI} ^application.*
  384.         RewriteRule ^(.*)$ /index.php?/$1 [L]
  385.  
  386.         # Checks to see if the user is attempting to access a valid file,
  387.         # such as an image or css document, if this isn't true it sends the
  388.         # request to index.php
  389.         RewriteCond %{REQUEST_FILENAME} !-f
  390.         RewriteCond %{REQUEST_FILENAME} !-d
  391.         RewriteRule ^(.*)$ index.php?/$1 [L]
  392.     </IfModule>
  393.  
  394.     <IfModule !mod_rewrite.c>
  395.         # If we don't have mod_rewrite installed, all 404's
  396.         # can be sent to index.php, and everything works as normal.
  397.         # Submitted by: ElliotHaughin
  398.  
  399.         ErrorDocument 404 /index.php
  400.     </IfModule>
  401.  
  402. </Directory>
  403.  
  404. #
  405. # UserDir: The name of the directory that is appended onto a user's home
  406. # directory if a ~user request is received.
  407. #
  408. # The path to the end user account 'public_html' directory must be
  409. # accessible to the webserver userid.  This usually means that ~userid
  410. # must have permissions of 711, ~userid/public_html must have permissions
  411. # of 755, and documents contained therein must be world-readable.
  412. # Otherwise, the client will only receive a "403 Forbidden" message.
  413. #
  414. # See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
  415. #
  416. <IfModule mod_userdir.c>
  417.     #
  418.     # UserDir is disabled by default since it can confirm the presence
  419.     # of a username on the system (depending on home directory
  420.     # permissions).
  421.     #
  422.     UserDir disabled
  423.  
  424.     #
  425.     # To enable requests to /~user/ to serve the user's public_html
  426.     # directory, remove the "UserDir disabled" line above, and uncomment
  427.     # the following line instead:
  428.     #
  429.     #UserDir public_html
  430.  
  431. </IfModule>
  432.  
  433. #
  434. # Control access to UserDir directories.  The following is an example
  435. # for a site where these directories are restricted to read-only.
  436. #
  437. #<Directory /home/*/public_html>
  438. #    AllowOverride FileInfo AuthConfig Limit
  439. #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  440. #    <Limit GET POST OPTIONS>
  441. #        Order allow,deny
  442. #        Allow from all
  443. #    </Limit>
  444. #    <LimitExcept GET POST OPTIONS>
  445. #        Order deny,allow
  446. #        Deny from all
  447. #    </LimitExcept>
  448. #</Directory>
  449.  
  450. #
  451. # DirectoryIndex: sets the file that Apache will serve if a directory
  452. # is requested.
  453. #
  454. # The index.html.var file (a type-map) is used to deliver content-
  455. # negotiated documents.  The MultiViews Option can be used for the
  456. # same purpose, but it is much slower.
  457. #
  458. DirectoryIndex index.html index.html.var
  459.  
  460. #
  461. # AccessFileName: The name of the file to look for in each directory
  462. # for additional configuration directives.  See also the AllowOverride
  463. # directive.
  464. #
  465. AccessFileName .htaccess
  466.  
  467. #
  468. # The following lines prevent .htaccess and .htpasswd files from being
  469. # viewed by Web clients.
  470. #
  471. <Files ~ "^\.ht">
  472.     Order allow,deny
  473.     Deny from all
  474.     Satisfy All
  475. </Files>
  476.  
  477. #
  478. # TypesConfig describes where the mime.types file (or equivalent) is
  479. # to be found.
  480. #
  481. TypesConfig /etc/mime.types
  482.  
  483. #
  484. # DefaultType is the default MIME type the server will use for a document
  485. # if it cannot otherwise determine one, such as from filename extensions.
  486. # If your server contains mostly text or HTML documents, "text/plain" is
  487. # a good value.  If most of your content is binary, such as applications
  488. # or images, you may want to use "application/octet-stream" instead to
  489. # keep browsers from trying to display binary files as though they are
  490. # text.
  491. #
  492. DefaultType text/plain
  493.  
  494. #
  495. # The mod_mime_magic module allows the server to use various hints from the
  496. # contents of the file itself to determine its type.  The MIMEMagicFile
  497. # directive tells the module where the hint definitions are located.
  498. #
  499. <IfModule mod_mime_magic.c>
  500. #   MIMEMagicFile /usr/share/magic.mime
  501.     MIMEMagicFile conf/magic
  502. </IfModule>
  503.  
  504. #
  505. # HostnameLookups: Log the names of clients or just their IP addresses
  506. # e.g., www.apache.org (on) or 204.62.129.132 (off).
  507. # The default is off because it'd be overall better for the net if people
  508. # had to knowingly turn this feature on, since enabling it means that
  509. # each client request will result in AT LEAST one lookup request to the
  510. # nameserver.
  511. #
  512. HostnameLookups Off
  513.  
  514. #
  515. # EnableMMAP: Control whether memory-mapping is used to deliver
  516. # files (assuming that the underlying OS supports it).
  517. # The default is on; turn this off if you serve from NFS-mounted
  518. # filesystems.  On some systems, turning it off (regardless of
  519. # filesystem) can improve performance; for details, please see
  520. # http://httpd.apache.org/docs/2.2/mod/core.html#enablemmap
  521. #
  522. #EnableMMAP off
  523.  
  524. #
  525. # EnableSendfile: Control whether the sendfile kernel support is
  526. # used to deliver files (assuming that the OS supports it).
  527. # The default is on; turn this off if you serve from NFS-mounted
  528. # filesystems.  Please see
  529. # http://httpd.apache.org/docs/2.2/mod/core.html#enablesendfile
  530. #
  531. #EnableSendfile off
  532.  
  533. #
  534. # ErrorLog: The location of the error log file.
  535. # If you do not specify an ErrorLog directive within a <VirtualHost>
  536. # container, error messages relating to that virtual host will be
  537. # logged here.  If you *do* define an error logfile for a <VirtualHost>
  538. # container, that host's errors will be logged there and not here.
  539. #
  540. ErrorLog logs/error_log
  541.  
  542. #
  543. # LogLevel: Control the number of messages logged to the error_log.
  544. # Possible values include: debug, info, notice, warn, error, crit,
  545. # alert, emerg.
  546. #
  547. LogLevel warn
  548.  
  549. #
  550. # The following directives define some format nicknames for use with
  551. # a CustomLog directive (see below).
  552. #
  553. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  554. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  555. LogFormat "%{Referer}i -> %U" referer
  556. LogFormat "%{User-agent}i" agent
  557.  
  558. # "combinedio" includes actual counts of actual bytes received (%I) and sent (%O); this
  559. # requires the mod_logio module to be loaded.
  560. #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  561.  
  562. #
  563. # The location and format of the access logfile (Common Logfile Format).
  564. # If you do not define any access logfiles within a <VirtualHost>
  565. # container, they will be logged here.  Contrariwise, if you *do*
  566. # define per-<VirtualHost> access logfiles, transactions will be
  567. # logged therein and *not* in this file.
  568. #
  569. #CustomLog logs/access_log common
  570.  
  571. #
  572. # If you would like to have separate agent and referer logfiles, uncomment
  573. # the following directives.
  574. #
  575. #CustomLog logs/referer_log referer
  576. #CustomLog logs/agent_log agent
  577.  
  578. #
  579. # For a single logfile with access, agent, and referer information
  580. # (Combined Logfile Format), use the following directive:
  581. #
  582. CustomLog logs/access_log combined
  583.  
  584. #
  585. # Optionally add a line containing the server version and virtual host
  586. # name to server-generated pages (internal error documents, FTP directory
  587. # listings, mod_status and mod_info output etc., but not CGI generated
  588. # documents or custom error documents).
  589. # Set to "EMail" to also include a mailto: link to the ServerAdmin.
  590. # Set to one of:  On | Off | EMail
  591. #
  592. ServerSignature On
  593.  
  594. #
  595. # Aliases: Add here as many aliases as you need (with no limit). The format is
  596. # Alias fakename realname
  597. #
  598. # Note that if you include a trailing / on fakename then the server will
  599. # require it to be present in the URL.  So "/icons" isn't aliased in this
  600. # example, only "/icons/".  If the fakename is slash-terminated, then the
  601. # realname must also be slash terminated, and if the fakename omits the
  602. # trailing slash, the realname must also omit it.
  603. #
  604. # We include the /icons/ alias for FancyIndexed directory listings.  If you
  605. # do not use FancyIndexing, you may comment this out.
  606. #
  607. Alias /icons/ "/var/www/icons/"
  608.  
  609. <Directory "/var/www/icons">
  610.     Options Indexes MultiViews FollowSymLinks
  611.     AllowOverride None
  612.     Order allow,deny
  613.     Allow from all
  614. </Directory>
  615.  
  616. #
  617. # WebDAV module configuration section.
  618. #
  619. <IfModule mod_dav_fs.c>
  620.     # Location of the WebDAV lock database.
  621.     DAVLockDB /var/lib/dav/lockdb
  622. </IfModule>
  623.  
  624. #
  625. # ScriptAlias: This controls which directories contain server scripts.
  626. # ScriptAliases are essentially the same as Aliases, except that
  627. # documents in the realname directory are treated as applications and
  628. # run by the server when requested rather than as documents sent to the client.
  629. # The same rules about trailing "/" apply to ScriptAlias directives as to
  630. # Alias.
  631. #
  632. ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
  633.  
  634. #
  635. # "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
  636. # CGI directory exists, if you have that configured.
  637. #
  638. <Directory "/var/www/cgi-bin">
  639.     AllowOverride None
  640.     Options None
  641.     Order allow,deny
  642.     Allow from all
  643. </Directory>
  644.  
  645. #
  646. # Redirect allows you to tell clients about documents which used to exist in
  647. # your server's namespace, but do not anymore. This allows you to tell the
  648. # clients where to look for the relocated document.
  649. # Example:
  650. # Redirect permanent /foo http://www.example.com/bar
  651.  
  652. #
  653. # Directives controlling the display of server-generated directory listings.
  654. #
  655.  
  656. #
  657. # IndexOptions: Controls the appearance of server-generated directory
  658. # listings.
  659. #
  660. IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable Charset=UTF-8
  661.  
  662. #
  663. # AddIcon* directives tell the server which icon to show for different
  664. # files or filename extensions.  These are only displayed for
  665. # FancyIndexed directories.
  666. #
  667. AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
  668.  
  669. AddIconByType (TXT,/icons/text.gif) text/*
  670. AddIconByType (IMG,/icons/image2.gif) image/*
  671. AddIconByType (SND,/icons/sound2.gif) audio/*
  672. AddIconByType (VID,/icons/movie.gif) video/*
  673.  
  674. AddIcon /icons/binary.gif .bin .exe
  675. AddIcon /icons/binhex.gif .hqx
  676. AddIcon /icons/tar.gif .tar
  677. AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
  678. AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
  679. AddIcon /icons/a.gif .ps .ai .eps
  680. AddIcon /icons/layout.gif .html .shtml .htm .pdf
  681. AddIcon /icons/text.gif .txt
  682. AddIcon /icons/c.gif .c
  683. AddIcon /icons/p.gif .pl .py
  684. AddIcon /icons/f.gif .for
  685. AddIcon /icons/dvi.gif .dvi
  686. AddIcon /icons/uuencoded.gif .uu
  687. AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
  688. AddIcon /icons/tex.gif .tex
  689. AddIcon /icons/bomb.gif core
  690.  
  691. AddIcon /icons/back.gif ..
  692. AddIcon /icons/hand.right.gif README
  693. AddIcon /icons/folder.gif ^^DIRECTORY^^
  694. AddIcon /icons/blank.gif ^^BLANKICON^^
  695.  
  696. #
  697. # DefaultIcon is which icon to show for files which do not have an icon
  698. # explicitly set.
  699. #
  700. DefaultIcon /icons/unknown.gif
  701.  
  702. #
  703. # AddDescription allows you to place a short description after a file in
  704. # server-generated indexes.  These are only displayed for FancyIndexed
  705. # directories.
  706. # Format: AddDescription "description" filename
  707. #
  708. #AddDescription "GZIP compressed document" .gz
  709. #AddDescription "tar archive" .tar
  710. #AddDescription "GZIP compressed tar archive" .tgz
  711.  
  712. #
  713. # ReadmeName is the name of the README file the server will look for by
  714. # default, and append to directory listings.
  715. #
  716. # HeaderName is the name of a file which should be prepended to
  717. # directory indexes.
  718. ReadmeName README.html
  719. HeaderName HEADER.html
  720.  
  721. #
  722. # IndexIgnore is a set of filenames which directory indexing should ignore
  723. # and not include in the listing.  Shell-style wildcarding is permitted.
  724. #
  725. IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
  726.  
  727. #
  728. # DefaultLanguage and AddLanguage allows you to specify the language of
  729. # a document. You can then use content negotiation to give a browser a
  730. # file in a language the user can understand.
  731. #
  732. # Specify a default language. This means that all data
  733. # going out without a specific language tag (see below) will
  734. # be marked with this one. You probably do NOT want to set
  735. # this unless you are sure it is correct for all cases.
  736. #
  737. # * It is generally better to not mark a page as
  738. # * being a certain language than marking it with the wrong
  739. # * language!
  740. #
  741. # DefaultLanguage nl
  742. #
  743. # Note 1: The suffix does not have to be the same as the language
  744. # keyword --- those with documents in Polish (whose net-standard
  745. # language code is pl) may wish to use "AddLanguage pl .po" to
  746. # avoid the ambiguity with the common suffix for perl scripts.
  747. #
  748. # Note 2: The example entries below illustrate that in some cases
  749. # the two character 'Language' abbreviation is not identical to
  750. # the two character 'Country' code for its country,
  751. # E.g. 'Danmark/dk' versus 'Danish/da'.
  752. #
  753. # Note 3: In the case of 'ltz' we violate the RFC by using a three char
  754. # specifier. There is 'work in progress' to fix this and get
  755. # the reference data for rfc1766 cleaned up.
  756. #
  757. # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
  758. # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
  759. # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
  760. # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
  761. # Norwegian (no) - Polish (pl) - Portugese (pt)
  762. # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
  763. # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
  764. #
  765. AddLanguage ca .ca
  766. AddLanguage cs .cz .cs
  767. AddLanguage da .dk
  768. AddLanguage de .de
  769. AddLanguage el .el
  770. AddLanguage en .en
  771. AddLanguage eo .eo
  772. AddLanguage es .es
  773. AddLanguage et .et
  774. AddLanguage fr .fr
  775. AddLanguage he .he
  776. AddLanguage hr .hr
  777. AddLanguage it .it
  778. AddLanguage ja .ja
  779. AddLanguage ko .ko
  780. AddLanguage ltz .ltz
  781. AddLanguage nl .nl
  782. AddLanguage nn .nn
  783. AddLanguage no .no
  784. AddLanguage pl .po
  785. AddLanguage pt .pt
  786. AddLanguage pt-BR .pt-br
  787. AddLanguage ru .ru
  788. AddLanguage sv .sv
  789. AddLanguage zh-CN .zh-cn
  790. AddLanguage zh-TW .zh-tw
  791.  
  792. #
  793. # LanguagePriority allows you to give precedence to some languages
  794. # in case of a tie during content negotiation.
  795. #
  796. # Just list the languages in decreasing order of preference. We have
  797. # more or less alphabetized them here. You probably want to change this.
  798. #
  799. LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
  800.  
  801. #
  802. # ForceLanguagePriority allows you to serve a result page rather than
  803. # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
  804. # [in case no accepted languages matched the available variants]
  805. #
  806. ForceLanguagePriority Prefer Fallback
  807.  
  808. #
  809. # Specify a default charset for all content served; this enables
  810. # interpretation of all content as UTF-8 by default.  To use the
  811. # default browser choice (ISO-8859-1), or to allow the META tags
  812. # in HTML content to override this choice, comment out this
  813. # directive:
  814. #
  815. AddDefaultCharset UTF-8
  816.  
  817. #
  818. # AddType allows you to add to or override the MIME configuration
  819. # file mime.types for specific file types.
  820. #
  821. #AddType application/x-tar .tgz
  822.  
  823. #
  824. # AddEncoding allows you to have certain browsers uncompress
  825. # information on the fly. Note: Not all browsers support this.
  826. # Despite the name similarity, the following Add* directives have nothing
  827. # to do with the FancyIndexing customization directives above.
  828. #
  829. #AddEncoding x-compress .Z
  830. #AddEncoding x-gzip .gz .tgz
  831.  
  832. # If the AddEncoding directives above are commented-out, then you
  833. # probably should define those extensions to indicate media types:
  834. #
  835. AddType application/x-compress .Z
  836. AddType application/x-gzip .gz .tgz
  837.  
  838. #
  839. #   MIME-types for downloading Certificates and CRLs
  840. #
  841. AddType application/x-x509-ca-cert .crt
  842. AddType application/x-pkcs7-crl    .crl
  843.  
  844. #
  845. # AddHandler allows you to map certain file extensions to "handlers":
  846. # actions unrelated to filetype. These can be either built into the server
  847. # or added with the Action directive (see below)
  848. #
  849. # To use CGI scripts outside of ScriptAliased directories:
  850. # (You will also need to add "ExecCGI" to the "Options" directive.)
  851. #
  852. #AddHandler cgi-script .cgi
  853.  
  854. #
  855. # For files that include their own HTTP headers:
  856. #
  857. #AddHandler send-as-is asis
  858.  
  859. #
  860. # For type maps (negotiated resources):
  861. # (This is enabled by default to allow the Apache "It Worked" page
  862. #  to be distributed in multiple languages.)
  863. #
  864. AddHandler type-map var
  865.  
  866. #
  867. # Filters allow you to process content before it is sent to the client.
  868. #
  869. # To parse .shtml files for server-side includes (SSI):
  870. # (You will also need to add "Includes" to the "Options" directive.)
  871. #
  872. AddType text/html .shtml
  873. AddOutputFilter INCLUDES .shtml
  874.  
  875. #
  876. # Action lets you define media types that will execute a script whenever
  877. # a matching file is called. This eliminates the need for repeated URL
  878. # pathnames for oft-used CGI file processors.
  879. # Format: Action media/type /cgi-script/location
  880. # Format: Action handler-name /cgi-script/location
  881. #
  882.  
  883. #
  884. # Customizable error responses come in three flavors:
  885. # 1) plain text 2) local redirects 3) external redirects
  886. #
  887. # Some examples:
  888. #ErrorDocument 500 "The server made a boo boo."
  889. #ErrorDocument 404 /missing.html
  890. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  891. #ErrorDocument 402 http://www.example.com/subscription_info.html
  892. #
  893.  
  894. #
  895. # Putting this all together, we can internationalize error responses.
  896. #
  897. # We use Alias to redirect any /error/HTTP_<error>.html.var response to
  898. # our collection of by-error message multi-language collections.  We use
  899. # includes to substitute the appropriate text.
  900. #
  901. # You can modify the messages' appearance without changing any of the
  902. # default HTTP_<error>.html.var files by adding the line:
  903. #
  904. #   Alias /error/include/ "/your/include/path/"
  905. #
  906. # which allows you to create your own set of files by starting with the
  907. # /var/www/error/include/ files and
  908. # copying them to /your/include/path/, even on a per-VirtualHost basis.
  909. #
  910.  
  911. Alias /error/ "/var/www/error/"
  912.  
  913. <IfModule mod_negotiation.c>
  914. <IfModule mod_include.c>
  915.     <Directory "/var/www/error">
  916.         AllowOverride None
  917.         Options IncludesNoExec
  918.         AddOutputFilter Includes html
  919.         AddHandler type-map var
  920.         Order allow,deny
  921.         Allow from all
  922.         LanguagePriority en es de fr
  923.         ForceLanguagePriority Prefer Fallback
  924.     </Directory>
  925.  
  926. #    ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
  927. #    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
  928. #    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
  929. #    ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
  930. #    ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
  931. #    ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
  932. #    ErrorDocument 410 /error/HTTP_GONE.html.var
  933. #    ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
  934. #    ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
  935. #    ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
  936. #    ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
  937. #    ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
  938. #    ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
  939. #    ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
  940. #    ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
  941. #    ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
  942. #    ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
  943.  
  944. </IfModule>
  945. </IfModule>
  946.  
  947. #
  948. # The following directives modify normal HTTP response behavior to
  949. # handle known problems with browser implementations.
  950. #
  951. BrowserMatch "Mozilla/2" nokeepalive
  952. BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
  953. BrowserMatch "RealPlayer 4\.0" force-response-1.0
  954. BrowserMatch "Java/1\.0" force-response-1.0
  955. BrowserMatch "JDK/1\.0" force-response-1.0
  956.  
  957. #
  958. # The following directive disables redirects on non-GET requests for
  959. # a directory that does not include the trailing slash.  This fixes a
  960. # problem with Microsoft WebFolders which does not appropriately handle
  961. # redirects for folders with DAV methods.
  962. # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
  963. #
  964. BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
  965. BrowserMatch "MS FrontPage" redirect-carefully
  966. BrowserMatch "^WebDrive" redirect-carefully
  967. BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
  968. BrowserMatch "^gnome-vfs/1.0" redirect-carefully
  969. BrowserMatch "^XML Spy" redirect-carefully
  970. BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
  971.  
  972. #
  973. # Allow server status reports generated by mod_status,
  974. # with the URL of http://servername/server-status
  975. # Change the ".example.com" to match your domain to enable.
  976. #
  977. #<Location /server-status>
  978. #    SetHandler server-status
  979. #    Order deny,allow
  980. #    Deny from all
  981. #    Allow from .example.com
  982. #</Location>
  983.  
  984. #
  985. # Allow remote server configuration reports, with the URL of
  986. #  http://servername/server-info (requires that mod_info.c be loaded).
  987. # Change the ".example.com" to match your domain to enable.
  988. #
  989. #<Location /server-info>
  990. #    SetHandler server-info
  991. #    Order deny,allow
  992. #    Deny from all
  993. #    Allow from .example.com
  994. #</Location>
  995.  
  996. #
  997. # Proxy Server directives. Uncomment the following lines to
  998. # enable the proxy server:
  999. #
  1000. #<IfModule mod_proxy.c>
  1001. #ProxyRequests On
  1002. #
  1003. #<Proxy *>
  1004. #    Order deny,allow
  1005. #    Deny from all
  1006. #    Allow from .example.com
  1007. #</Proxy>
  1008.  
  1009. #
  1010. # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  1011. # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  1012. # Set to one of: Off | On | Full | Block
  1013. #
  1014. #ProxyVia On
  1015.  
  1016. #
  1017. # To enable a cache of proxied content, uncomment the following lines.
  1018. # See http://httpd.apache.org/docs/2.2/mod/mod_cache.html for more details.
  1019. #
  1020. #<IfModule mod_disk_cache.c>
  1021. #   CacheEnable disk /
  1022. #   CacheRoot "/var/cache/mod_proxy"
  1023. #</IfModule>
  1024. #
  1025.  
  1026. #</IfModule>
  1027. # End of proxy directives.
  1028.  
  1029. ### Section 3: Virtual Hosts
  1030. #
  1031. # VirtualHost: If you want to maintain multiple domains/hostnames on your
  1032. # machine you can setup VirtualHost containers for them. Most configurations
  1033. # use only name-based virtual hosts so the server doesn't need to worry about
  1034. # IP addresses. This is indicated by the asterisks in the directives below.
  1035. #
  1036. # Please see the documentation at
  1037. # <URL:http://httpd.apache.org/docs/2.2/vhosts/>
  1038. # for further details before you try to setup virtual hosts.
  1039. #
  1040. # You may use the command line option '-S' to verify your virtual host
  1041. # configuration.
  1042.  
  1043. #
  1044. # Use name-based virtual hosting.
  1045. #
  1046. NameVirtualHost *:80
  1047. #
  1048. # NOTE: NameVirtualHost cannot be used without a port specifier
  1049. # (e.g. :80) if mod_ssl is being used, due to the nature of the
  1050. # SSL protocol.
  1051. #
  1052.  
  1053. #
  1054. # VirtualHost example:
  1055. # Almost any Apache directive may go into a VirtualHost container.
  1056. # The first VirtualHost section is used for requests without a known
  1057. # server name.
  1058. #
  1059. #<VirtualHost *:80>
  1060. #    ServerAdmin webmaster@dummy-host.example.com
  1061. #    DocumentRoot /www/docs/dummy-host.example.com
  1062. #    ServerName dummy-host.example.com
  1063. #    ErrorLog logs/dummy-host.example.com-error_log
  1064. #    CustomLog logs/dummy-host.example.com-access_log common
  1065. #</VirtualHost>
  1066.  
  1067. <VirtualHost *:80>
  1068.     ServerName domain1.com
  1069.     ServerAlias www.domain1.com
  1070.     DocumentRoot /var/www/html
  1071.     ServerAdmin webmaster@domain1.com
  1072.  
  1073.     # XSendFile on
  1074.     # XSendFilePath /var
  1075.  
  1076.     # CustomLog /usr/local/apache/domlogs/domain1.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1077.     # CustomLog /usr/local/apache/domlogs/domain1.com combined
  1078.     # ScriptAlias /cgi-bin/ /home/domain1com/public_html/cgi-bin/
  1079. </VirtualHost>
  1080.  
  1081. <VirtualHost *:80>
  1082.     ServerName domain2.com
  1083.     ServerAlias www.domain2.com
  1084.     DocumentRoot /var/www/html
  1085.     ServerAdmin webmaster@domain2.com
  1086. </VirtualHost>
  1087.  
  1088.  
  1089. # FileETag MTime
  1090.  
  1091. <IfModule mod_deflate.c>
  1092.     SetOutputFilter DEFLATE
  1093.  
  1094.     # Don.t compress
  1095.     SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
  1096.     SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
  1097.  
  1098.     #Dealing with proxy servers
  1099.     <IfModule mod_headers.c>
  1100.         Header append Vary User-Agent
  1101.     </IfModule>
  1102. </IfModule>
  1103.  
  1104. <Directory /var/www/html/includes>
  1105.     ExpiresActive On
  1106.     ExpiresDefault "access plus 5 days"
  1107. </Directory>
  1108.  
  1109. <filesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf|txt)$">
  1110.     # Header set Cache-Control "public"
  1111.     Header set Cache-Control "max-age=172800, public, must-revalidate"
  1112.     FileETag MTime Size
  1113. </filesMatch>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement