/apache2/apache2.conf

http://github.com/brinkman83/bashrc · Config · 236 lines · 206 code · 30 blank · 0 comment · 0 complexity · 86aaee758e9f530be2ba5cc7a3a7d147 MD5 · raw file

  1. #
  2. # Based upon the NCSA server configuration files originally by Rob McCool.
  3. #
  4. # This is the main Apache server configuration file. It contains the
  5. # configuration directives that give the server its instructions.
  6. # See http://httpd.apache.org/docs/2.2/ for detailed information about
  7. # the directives.
  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. # The configuration directives are grouped into three basic sections:
  14. # 1. Directives that control the operation of the Apache server process as a
  15. # whole (the 'global environment').
  16. # 2. Directives that define the parameters of the 'main' or 'default' server,
  17. # which responds to requests that aren't handled by a virtual host.
  18. # These directives also provide default values for the settings
  19. # of all virtual hosts.
  20. # 3. Settings for virtual hosts, which allow Web requests to be sent to
  21. # different IP addresses or hostnames and have them handled by the
  22. # same Apache server process.
  23. #
  24. # Configuration and logfile names: If the filenames you specify for many
  25. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  26. # server will use that explicit path. If the filenames do *not* begin
  27. # with "/", the value of ServerRoot is prepended -- so "/var/log/apache2/foo.log"
  28. # with ServerRoot set to "" will be interpreted by the
  29. # server as "//var/log/apache2/foo.log".
  30. #
  31. ### Section 1: Global Environment
  32. #
  33. # The directives in this section affect the overall operation of Apache,
  34. # such as the number of concurrent requests it can handle or where it
  35. # can find its configuration files.
  36. #
  37. #
  38. # ServerRoot: The top of the directory tree under which the server's
  39. # configuration, error, and log files are kept.
  40. #
  41. # NOTE! If you intend to place this on an NFS (or otherwise network)
  42. # mounted filesystem then please read the LockFile documentation (available
  43. # at <URL:http://httpd.apache.org/docs-2.1/mod/mpm_common.html#lockfile>);
  44. # you will save yourself a lot of trouble.
  45. #
  46. # Do NOT add a slash at the end of the directory path.
  47. #
  48. ServerRoot "/etc/apache2"
  49. #
  50. # The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
  51. #
  52. #<IfModule !mpm_winnt.c>
  53. #<IfModule !mpm_netware.c>
  54. LockFile /var/lock/apache2/accept.lock
  55. #</IfModule>
  56. #</IfModule>
  57. #
  58. # PidFile: The file in which the server should record its process
  59. # identification number when it starts.
  60. # This needs to be set in /etc/apache2/envvars
  61. #
  62. PidFile ${APACHE_PID_FILE}
  63. #
  64. # Timeout: The number of seconds before receives and sends time out.
  65. #
  66. Timeout 300
  67. #
  68. # KeepAlive: Whether or not to allow persistent connections (more than
  69. # one request per connection). Set to "Off" to deactivate.
  70. #
  71. KeepAlive On
  72. #
  73. # MaxKeepAliveRequests: The maximum number of requests to allow
  74. # during a persistent connection. Set to 0 to allow an unlimited amount.
  75. # We recommend you leave this number high, for maximum performance.
  76. #
  77. MaxKeepAliveRequests 100
  78. #
  79. # KeepAliveTimeout: Number of seconds to wait for the next request from the
  80. # same client on the same connection.
  81. #
  82. KeepAliveTimeout 15
  83. ##
  84. ## Server-Pool Size Regulation (MPM specific)
  85. ##
  86. # prefork MPM
  87. # StartServers: number of server processes to start
  88. # MinSpareServers: minimum number of server processes which are kept spare
  89. # MaxSpareServers: maximum number of server processes which are kept spare
  90. # MaxClients: maximum number of server processes allowed to start
  91. # MaxRequestsPerChild: maximum number of requests a server process serves
  92. <IfModule mpm_prefork_module>
  93. StartServers 5
  94. MinSpareServers 5
  95. MaxSpareServers 10
  96. MaxClients 150
  97. MaxRequestsPerChild 0
  98. </IfModule>
  99. # worker MPM
  100. # StartServers: initial number of server processes to start
  101. # MaxClients: maximum number of simultaneous client connections
  102. # MinSpareThreads: minimum number of worker threads which are kept spare
  103. # MaxSpareThreads: maximum number of worker threads which are kept spare
  104. # ThreadsPerChild: constant number of worker threads in each server process
  105. # MaxRequestsPerChild: maximum number of requests a server process serves
  106. <IfModule mpm_worker_module>
  107. StartServers 2
  108. MinSpareThreads 25
  109. MaxSpareThreads 75
  110. ThreadLimit 64
  111. ThreadsPerChild 25
  112. MaxClients 150
  113. MaxRequestsPerChild 0
  114. </IfModule>
  115. # event MPM
  116. # StartServers: initial number of server processes to start
  117. # MaxClients: maximum number of simultaneous client connections
  118. # MinSpareThreads: minimum number of worker threads which are kept spare
  119. # MaxSpareThreads: maximum number of worker threads which are kept spare
  120. # ThreadsPerChild: constant number of worker threads in each server process
  121. # MaxRequestsPerChild: maximum number of requests a server process serves
  122. <IfModule mpm_event_module>
  123. StartServers 2
  124. MaxClients 150
  125. MinSpareThreads 25
  126. MaxSpareThreads 75
  127. ThreadLimit 64
  128. ThreadsPerChild 25
  129. MaxRequestsPerChild 0
  130. </IfModule>
  131. # These need to be set in /etc/apache2/envvars
  132. User ${APACHE_RUN_USER}
  133. Group ${APACHE_RUN_GROUP}
  134. #
  135. # AccessFileName: The name of the file to look for in each directory
  136. # for additional configuration directives. See also the AllowOverride
  137. # directive.
  138. #
  139. AccessFileName .htaccess
  140. #
  141. # The following lines prevent .htaccess and .htpasswd files from being
  142. # viewed by Web clients.
  143. #
  144. <Files ~ "^\.ht">
  145. Order allow,deny
  146. Deny from all
  147. Satisfy all
  148. </Files>
  149. #
  150. # DefaultType is the default MIME type the server will use for a document
  151. # if it cannot otherwise determine one, such as from filename extensions.
  152. # If your server contains mostly text or HTML documents, "text/plain" is
  153. # a good value. If most of your content is binary, such as applications
  154. # or images, you may want to use "application/octet-stream" instead to
  155. # keep browsers from trying to display binary files as though they are
  156. # text.
  157. #
  158. DefaultType text/plain
  159. #
  160. # HostnameLookups: Log the names of clients or just their IP addresses
  161. # e.g., www.apache.org (on) or 204.62.129.132 (off).
  162. # The default is off because it'd be overall better for the net if people
  163. # had to knowingly turn this feature on, since enabling it means that
  164. # each client request will result in AT LEAST one lookup request to the
  165. # nameserver.
  166. #
  167. HostnameLookups Off
  168. # ErrorLog: The location of the error log file.
  169. # If you do not specify an ErrorLog directive within a <VirtualHost>
  170. # container, error messages relating to that virtual host will be
  171. # logged here. If you *do* define an error logfile for a <VirtualHost>
  172. # container, that host's errors will be logged there and not here.
  173. #
  174. ErrorLog /var/log/apache2/error.log
  175. #
  176. # LogLevel: Control the number of messages logged to the error_log.
  177. # Possible values include: debug, info, notice, warn, error, crit,
  178. # alert, emerg.
  179. #
  180. LogLevel warn
  181. # Include module configuration:
  182. Include /etc/apache2/mods-enabled/*.load
  183. Include /etc/apache2/mods-enabled/*.conf
  184. # Include all the user configurations:
  185. Include /etc/apache2/httpd.conf
  186. # Include ports listing
  187. Include /etc/apache2/ports.conf
  188. #
  189. # The following directives define some format nicknames for use with
  190. # a CustomLog directive (see below).
  191. # If you are behind a reverse proxy, you might want to change %h into %{X-Forwarded-For}i
  192. #
  193. LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
  194. LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
  195. LogFormat "%h %l %u %t \"%r\" %>s %O" common
  196. LogFormat "%{Referer}i -> %U" referer
  197. LogFormat "%{User-agent}i" agent
  198. #
  199. # Define an access log for VirtualHosts that don't define their own logfile
  200. CustomLog /var/log/apache2/other_vhosts_access.log vhost_combined
  201. # Include of directories ignores editors' and dpkg's backup files,
  202. # see README.Debian for details.
  203. # Include generic snippets of statements
  204. Include /etc/apache2/conf.d/
  205. # Include the virtual host configurations:
  206. Include /etc/apache2/sites-enabled/