poolparty 0.2.84 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (642) hide show
  1. data/History.txt +7 -0
  2. data/License.txt +1 -1
  3. data/PostInstall.txt +1 -1
  4. data/README.txt +13 -22
  5. data/Rakefile +26 -35
  6. data/VERSION.yml +4 -0
  7. data/bin/cloud +24 -3
  8. data/bin/cloud-bootstrap +31 -0
  9. data/bin/cloud-configure +36 -20
  10. data/bin/{pool-console → cloud-console} +0 -0
  11. data/bin/cloud-contract +7 -7
  12. data/bin/cloud-describe +28 -0
  13. data/bin/cloud-expand +13 -6
  14. data/bin/cloud-handle-load +3 -3
  15. data/bin/cloud-list +9 -14
  16. data/bin/cloud-osxcopy +6 -5
  17. data/bin/cloud-provision +17 -22
  18. data/bin/cloud-setup-dev +11 -11
  19. data/bin/cloud-show +28 -0
  20. data/bin/cloud-spec +2 -2
  21. data/bin/cloud-ssh +10 -3
  22. data/bin/cloud-start +21 -23
  23. data/bin/cloud-terminate +15 -7
  24. data/bin/cloud-verify +32 -0
  25. data/bin/install-poolparty +216 -0
  26. data/bin/server-butterfly +25 -0
  27. data/bin/server-cloud-elections +37 -0
  28. data/bin/server-ensure-provisioning +33 -0
  29. data/bin/server-get-load +9 -12
  30. data/bin/server-list-active +25 -12
  31. data/bin/server-manage-election +67 -0
  32. data/bin/server-monitor.ru +42 -0
  33. data/bin/server-query-agent +15 -0
  34. data/bin/server-rerun +1 -1
  35. data/bin/server-write-new-nodes +2 -2
  36. data/config/jeweler.rb +52 -0
  37. data/config/requirements.rb +1 -9
  38. data/examples/basic.rb +10 -10
  39. data/examples/deploy.rb +5 -0
  40. data/examples/fairchild.rb +28 -0
  41. data/examples/fairchild_chef.rb +19 -0
  42. data/examples/maize.rb +37 -0
  43. data/examples/paparazzi.conf.erb +21 -0
  44. data/generators/poolspec/poolspec_generator.rb +1 -9
  45. data/generators/poolspec/templates/pool_spec_template.erb +0 -1
  46. data/lib/poolparty/{aska/aska.rb → aska.rb} +19 -28
  47. data/lib/poolparty/base_packages/haproxy.rb +48 -31
  48. data/lib/poolparty/base_packages/heartbeat.rb +6 -62
  49. data/lib/poolparty/base_packages/poolparty.rb +5 -105
  50. data/lib/poolparty/base_packages/ruby.rb +4 -4
  51. data/lib/poolparty/base_packages/runit.rb +1 -1
  52. data/lib/poolparty/core/array.rb +21 -3
  53. data/lib/poolparty/core/hash.rb +45 -10
  54. data/lib/poolparty/core/kernel.rb +30 -8
  55. data/lib/poolparty/core/nil.rb +8 -0
  56. data/lib/poolparty/core/object.rb +34 -25
  57. data/lib/poolparty/core/ordered_hash.rb +99 -0
  58. data/lib/poolparty/core/string.rb +112 -15
  59. data/lib/poolparty/core/symbol.rb +10 -0
  60. data/lib/poolparty/dependencies.rb +49 -0
  61. data/lib/poolparty/dependency_resolver/chef_resolver.rb +237 -0
  62. data/lib/poolparty/dependency_resolver/dependency_resolver.rb +42 -0
  63. data/lib/poolparty/dependency_resolver/dependency_resolver_cloud_extensions.rb +29 -0
  64. data/lib/poolparty/{dependency_resolutions → dependency_resolver}/puppet.rb +34 -29
  65. data/lib/poolparty/dependency_resolver/puppet_resolver.rb +188 -0
  66. data/lib/poolparty/exceptions/MasterException.rb +2 -2
  67. data/lib/poolparty/exceptions/RemoteException.rb +1 -1
  68. data/lib/poolparty/exceptions/dependency_resolver_exception.rb +5 -0
  69. data/lib/poolparty/exceptions/package_exception.rb +7 -0
  70. data/lib/poolparty/extra/deployments.rb +7 -7
  71. data/lib/poolparty/helpers/binary.rb +26 -32
  72. data/lib/poolparty/helpers/console.rb +1 -1
  73. data/lib/poolparty/helpers/display.rb +1 -5
  74. data/lib/poolparty/helpers/hash_printer.rb +44 -0
  75. data/lib/poolparty/helpers/loading.rb +4 -0
  76. data/lib/poolparty/helpers/optioner.rb +39 -25
  77. data/lib/poolparty/lite.rb +30 -0
  78. data/lib/poolparty/modules/callbacks.rb +44 -0
  79. data/lib/poolparty/modules/cloud_dsl.rb +38 -8
  80. data/lib/poolparty/modules/cloud_resourcer.rb +67 -97
  81. data/lib/poolparty/modules/daemonizable.rb +141 -0
  82. data/lib/poolparty/modules/definable_resource.rb +8 -14
  83. data/lib/poolparty/modules/file_writer.rb +25 -17
  84. data/lib/poolparty/modules/pinger.rb +28 -0
  85. data/lib/poolparty/modules/pretty_printer.rb +1 -1
  86. data/lib/poolparty/modules/resourcing_dsl.rb +55 -40
  87. data/lib/poolparty/modules/searchable_paths.rb +91 -0
  88. data/lib/poolparty/modules/thread_pool.rb +107 -106
  89. data/lib/poolparty/modules/user_helpers.rb +20 -0
  90. data/lib/poolparty/monitors/base_monitor.rb +18 -75
  91. data/lib/poolparty/monitors/monitor_rack.rb +123 -0
  92. data/lib/poolparty/monitors/monitors/favicon_monitor.rb +12 -0
  93. data/lib/poolparty/monitors/monitors/load_monitor.rb +9 -0
  94. data/lib/poolparty/monitors/monitors/memory_monitor.rb +9 -9
  95. data/lib/poolparty/monitors/monitors/neighborhood_monitor.rb +77 -0
  96. data/lib/poolparty/monitors/monitors/stats_monitor.rb +187 -0
  97. data/lib/poolparty/monitors/monitors/time_monitor.rb +15 -0
  98. data/lib/poolparty/net/init.rb +10 -0
  99. data/lib/poolparty/net/remote_bases.rb +20 -0
  100. data/lib/poolparty/net/remote_instance.rb +26 -44
  101. data/lib/poolparty/net/remoter/cloud_control.rb +24 -0
  102. data/lib/poolparty/net/remoter/connections.rb +172 -0
  103. data/lib/poolparty/net/remoter/interactive.rb +45 -0
  104. data/lib/poolparty/net/remoter_base.rb +116 -111
  105. data/lib/poolparty/net/remoter_bases/ec2/ec2.rb +245 -0
  106. data/lib/poolparty/net/remoter_bases/ec2/ec2_remote_instance.rb +53 -0
  107. data/lib/poolparty/net/{remote_bases → remoter_bases}/ec2/ec2_response_object.rb +2 -4
  108. data/lib/poolparty/net/remoter_bases/vmrun/utilities/vm_disk.rb +12 -0
  109. data/lib/poolparty/net/remoter_bases/vmrun/utilities/vmx.rb +33 -0
  110. data/lib/poolparty/net/remoter_bases/vmrun/utilities/vmx_file.rb +117 -0
  111. data/lib/poolparty/net/remoter_bases/vmrun/vmrun.rb +158 -0
  112. data/lib/poolparty/net/remoter_bases/vmrun/vmrun_instance.rb +71 -0
  113. data/lib/poolparty/plugins/apache2/apache.rb +340 -0
  114. data/lib/poolparty/plugins/bind.rb +11 -0
  115. data/lib/poolparty/plugins/chef.rb +173 -0
  116. data/lib/poolparty/plugins/chef_deploy.rb +58 -0
  117. data/lib/poolparty/plugins/deploy_directory.rb +49 -0
  118. data/lib/poolparty/plugins/gem_package.rb +61 -0
  119. data/lib/poolparty/plugins/git.rb +41 -24
  120. data/lib/poolparty/plugins/line_in_file.rb +30 -0
  121. data/lib/poolparty/plugins/nanite.rb +41 -0
  122. data/lib/poolparty/plugins/rails_deploy.rb +76 -0
  123. data/lib/poolparty/plugins/svn.rb +56 -39
  124. data/lib/poolparty/poolparty/cloud.rb +137 -167
  125. data/lib/poolparty/poolparty/{base.rb → default.rb} +62 -25
  126. data/lib/poolparty/poolparty/key.rb +78 -0
  127. data/lib/poolparty/poolparty/loggable.rb +28 -27
  128. data/lib/poolparty/poolparty/neighborhoods.rb +102 -0
  129. data/lib/poolparty/poolparty/plugin.rb +53 -18
  130. data/lib/poolparty/poolparty/plugin_model.rb +20 -23
  131. data/lib/poolparty/poolparty/pool.rb +34 -26
  132. data/lib/poolparty/poolparty/poolparty_base_class.rb +190 -0
  133. data/lib/poolparty/poolparty/resource.rb +92 -178
  134. data/lib/poolparty/poolparty/script.rb +32 -20
  135. data/lib/poolparty/poolparty/service.rb +44 -0
  136. data/lib/poolparty/poolparty/template.rb +27 -0
  137. data/lib/poolparty/provision/boot_strapper.rb +164 -0
  138. data/lib/poolparty/provision/configurations/chef.rb +26 -0
  139. data/lib/poolparty/provision/configurations/puppet.rb +28 -0
  140. data/lib/poolparty/provision/dr_configure.rb +142 -0
  141. data/lib/poolparty/resources/cron.rb +51 -0
  142. data/lib/poolparty/resources/directory.rb +36 -0
  143. data/lib/poolparty/resources/exec.rb +47 -0
  144. data/lib/poolparty/resources/file.rb +73 -0
  145. data/lib/poolparty/resources/host.rb +37 -0
  146. data/lib/poolparty/resources/mount.rb +45 -0
  147. data/lib/poolparty/resources/package.rb +41 -0
  148. data/lib/poolparty/resources/remote_file.rb +52 -0
  149. data/lib/poolparty/resources/service.rb +41 -0
  150. data/lib/poolparty/resources/sshkey.rb +49 -0
  151. data/lib/poolparty/resources/symlink.rb +43 -0
  152. data/lib/poolparty/{poolparty/resources/remote_user.rb → resources/user.rb} +1 -5
  153. data/lib/poolparty/resources/variable.rb +34 -0
  154. data/lib/poolparty/resources.rb +42 -0
  155. data/lib/poolparty/schema.rb +79 -0
  156. data/lib/poolparty/templates/apache2/apache2.conf +14 -0
  157. data/lib/poolparty/templates/apache2/base.conf.erb +168 -0
  158. data/lib/poolparty/templates/apache2/browser_fixes.conf.erb +26 -0
  159. data/lib/poolparty/templates/apache2/debian.conf.erb +675 -0
  160. data/lib/poolparty/templates/apache2/default-site.conf.erb +41 -0
  161. data/lib/poolparty/templates/apache2/directory_indexes.conf.erb +101 -0
  162. data/lib/poolparty/templates/apache2/logging-syslog.conf.erb +42 -0
  163. data/lib/poolparty/templates/apache2/mime-extras.conf.erb +211 -0
  164. data/lib/poolparty/templates/apache2/mime-minimal.conf.erb +15 -0
  165. data/lib/poolparty/templates/apache2/mpm-worker.conf.erb +20 -0
  166. data/lib/poolparty/templates/apache2/mpm-worker.erb +20 -0
  167. data/lib/poolparty/templates/apache2/passenger.conf.erb +20 -0
  168. data/lib/poolparty/templates/apache2/php.ini.erb +1253 -0
  169. data/lib/poolparty/templates/apache2/server-status.erb +19 -0
  170. data/lib/poolparty/templates/erlang_cookie_maker +6 -0
  171. data/lib/poolparty/templates/gemrc_template +11 -0
  172. data/lib/poolparty/templates/ha.cf +1 -1
  173. data/lib/poolparty/templates/haproxy.conf +29 -27
  174. data/lib/poolparty/templates/haresources +2 -2
  175. data/lib/poolparty/templates/monitor.ru +16 -0
  176. data/lib/poolparty/templates/php.ini.erb +1253 -0
  177. data/lib/poolparty/templates/puppet/add_puppet_to_hosts +6 -0
  178. data/lib/poolparty/templates/puppet/puppet.conf +2 -0
  179. data/lib/poolparty/templates/puppet/puppetrunner +14 -0
  180. data/lib/poolparty/templates/puppet/site.pp +4 -0
  181. data/lib/poolparty/templates/puppetrunner +11 -5
  182. data/lib/poolparty/verification/verifier_base.rb +17 -0
  183. data/lib/poolparty/verification/verifiers/http_match.rb +43 -0
  184. data/lib/poolparty/verification/verifiers/http_status.rb +59 -0
  185. data/lib/poolparty/verification/verifiers/ping.rb +34 -0
  186. data/lib/poolparty/verification/verify.rb +76 -0
  187. data/lib/poolparty.rb +76 -22
  188. data/lib/poolpartycl.rb +66 -1
  189. data/script/destroy +1 -1
  190. data/script/generate +1 -1
  191. data/spec/bin/bin_spec_helper.rb +7 -0
  192. data/spec/bin/fixtures/bin_cloud_for_test.rb +13 -0
  193. data/spec/bin/server-list-active_spec.rb +24 -0
  194. data/spec/poolparty/aska/aska_spec.rb +5 -5
  195. data/spec/poolparty/base_packages/haproxy_spec.rb +2 -8
  196. data/spec/poolparty/base_packages/heartbeat_spec.rb +3 -26
  197. data/spec/poolparty/bin/console_spec.rb +11 -29
  198. data/spec/poolparty/core/array_spec.rb +20 -3
  199. data/spec/poolparty/core/hash_spec.rb +30 -28
  200. data/spec/poolparty/core/object_spec.rb +2 -3
  201. data/spec/poolparty/core/ordered_hash_spec.rb +48 -0
  202. data/spec/poolparty/core/string_spec.rb +1 -27
  203. data/spec/poolparty/dependencies_spec.rb +11 -0
  204. data/spec/poolparty/dependency_resolver/chef_resolver_spec.rb +107 -0
  205. data/spec/poolparty/dependency_resolver/dependency_resolver_cloud_extensions_spec.rb +122 -0
  206. data/spec/poolparty/dependency_resolver/dependency_resolver_spec.rb +16 -0
  207. data/spec/poolparty/dependency_resolver/puppet_resolver_spec.rb +121 -0
  208. data/spec/poolparty/extra/deployments_spec.rb +9 -5
  209. data/spec/poolparty/fixtures/clouds.json +128 -0
  210. data/spec/poolparty/fixtures/test_template.erb +1 -0
  211. data/spec/poolparty/helpers/binary_spec.rb +1 -1
  212. data/spec/poolparty/helpers/hash_printer_spec.rb +34 -0
  213. data/spec/poolparty/helpers/optioner_spec.rb +1 -1
  214. data/spec/poolparty/id_rsa +27 -0
  215. data/spec/poolparty/modules/cloud_resourcer_spec.rb +26 -111
  216. data/spec/poolparty/modules/definable_resource.rb +1 -1
  217. data/spec/poolparty/modules/file_writer_spec.rb +10 -4
  218. data/spec/poolparty/modules/searchable_paths_spec.rb +76 -0
  219. data/spec/poolparty/monitors/base_monitor_spec.rb +112 -111
  220. data/spec/poolparty/monitors/monitors/cpu_monitor_spec.rb +18 -16
  221. data/spec/poolparty/monitors/monitors/memory_monitor_spec.rb +48 -47
  222. data/spec/poolparty/net/remote_instance_spec.rb +9 -73
  223. data/spec/poolparty/net/remote_spec.rb +287 -310
  224. data/spec/poolparty/net/remoter_base_spec.rb +3 -56
  225. data/spec/poolparty/net/remoter_bases/ec2_mocks_and_stubs.rb +24 -0
  226. data/spec/poolparty/net/remoter_bases/ec2_remote_instance_spec.rb +114 -0
  227. data/spec/poolparty/net/{remote_bases → remoter_bases}/ec2_spec.rb +51 -53
  228. data/spec/poolparty/net/remoter_spec.rb +96 -86
  229. data/spec/poolparty/plugins/chef_spec.rb +7 -0
  230. data/spec/poolparty/plugins/deploydirectory_spec.rb +51 -52
  231. data/spec/poolparty/plugins/git_spec.rb +16 -20
  232. data/spec/poolparty/plugins/line_spec.rb +14 -8
  233. data/spec/poolparty/poolparty/cloud_spec.rb +85 -183
  234. data/spec/poolparty/poolparty/configurers/files/ruby_basic.rb +3 -4
  235. data/spec/poolparty/poolparty/configurers/ruby_spec.rb +7 -23
  236. data/spec/poolparty/poolparty/{base_spec.rb → default_spec.rb} +44 -41
  237. data/spec/poolparty/poolparty/example_spec.rb +43 -11
  238. data/spec/poolparty/poolparty/key_spec.rb +42 -0
  239. data/spec/poolparty/poolparty/neighborhoods_spec.rb +65 -0
  240. data/spec/poolparty/poolparty/plugin_model_spec.rb +14 -24
  241. data/spec/poolparty/poolparty/plugin_spec.rb +25 -96
  242. data/spec/poolparty/poolparty/pool_spec.rb +3 -1
  243. data/spec/poolparty/poolparty/resource_spec.rb +70 -270
  244. data/spec/poolparty/poolparty/script_spec.rb +30 -53
  245. data/spec/poolparty/poolparty/service_spec.rb +5 -0
  246. data/spec/poolparty/poolparty/template_spec.rb +26 -0
  247. data/spec/poolparty/poolparty/test_plugins/webserver.rb +8 -25
  248. data/spec/poolparty/poolparty_base_class_spec.rb +84 -0
  249. data/spec/poolparty/poolparty_spec.rb +7 -4
  250. data/spec/poolparty/resources/cron_spec.rb +44 -0
  251. data/spec/poolparty/resources/directory_spec.rb +40 -0
  252. data/spec/poolparty/resources/exec_spec.rb +37 -0
  253. data/spec/poolparty/resources/file_spec.rb +64 -0
  254. data/spec/poolparty/resources/gem_spec.rb +7 -0
  255. data/spec/poolparty/resources/host_spec.rb +35 -0
  256. data/spec/poolparty/resources/package_spec.rb +26 -0
  257. data/spec/poolparty/resources/service_spec.rb +29 -0
  258. data/spec/poolparty/resources/sshkey_spec.rb +40 -0
  259. data/spec/poolparty/resources/symlink_spec.rb +29 -0
  260. data/spec/poolparty/resources/user_spec.rb +48 -0
  261. data/spec/poolparty/resources/variable_spec.rb +26 -0
  262. data/spec/poolparty/schema_spec.rb +53 -0
  263. data/spec/poolparty/spec_helper.rb +107 -23
  264. data/spec/poolparty/test_spec_helper.rb +13 -0
  265. data/tasks/development.rake +85 -69
  266. data/tasks/poolparty.rake +54 -0
  267. data/tasks/server.rake +41 -39
  268. data/tasks/spec.rake +35 -1
  269. data/test/fixtures/test_template.erb +1 -0
  270. data/test/poolparty/core/array_test.rb +21 -0
  271. data/test/poolparty/core/hash_test.rb +34 -0
  272. data/test/poolparty/core/string_test.rb +29 -0
  273. data/test/poolparty/dependency_resolver/puppet_resolver_test.rb +90 -0
  274. data/test/poolparty/modules/callbacks_test.rb +40 -0
  275. data/test/poolparty/modules/cloud_dsl_test.rb +60 -0
  276. data/test/poolparty/net/remoter_bases/vmrun/vmrun_test.rb +54 -0
  277. data/test/poolparty/net/remoter_test.rb +14 -0
  278. data/test/poolparty/poolparty/neighborhood_test.rb +23 -0
  279. data/test/poolparty/poolparty/poolparty_base_class_test.rb +84 -0
  280. data/test/poolparty/poolparty/template_test.rb +31 -0
  281. data/test/poolparty/provision/boot_strapper_test.rb +6 -0
  282. data/test/poolparty/provision/dr_configure_test.rb +6 -0
  283. data/test/poolparty/verification/verify_test.rb +49 -0
  284. data/test/test_helper.rb +8 -2
  285. data/test/test_poolparty.rb +6 -5
  286. data/vendor/chef/apache2/README.rdoc +59 -0
  287. data/vendor/chef/apache2/attributes/apache.rb +72 -0
  288. data/vendor/chef/apache2/definitions/apache_module.rb +36 -0
  289. data/vendor/chef/apache2/definitions/apache_site.rb +36 -0
  290. data/vendor/chef/apache2/definitions/web_app.rb +45 -0
  291. data/vendor/chef/apache2/files/default/apache2_module_conf_generate.pl +41 -0
  292. data/vendor/chef/apache2/recipes/default.rb +132 -0
  293. data/vendor/chef/apache2/recipes/mod_alias.rb +20 -0
  294. data/vendor/chef/apache2/recipes/mod_auth_basic.rb +20 -0
  295. data/vendor/chef/apache2/recipes/mod_auth_digest.rb +20 -0
  296. data/vendor/chef/apache2/recipes/mod_authn_file.rb +20 -0
  297. data/vendor/chef/apache2/recipes/mod_authnz_ldap.rb +20 -0
  298. data/vendor/chef/apache2/recipes/mod_authz_default.rb +20 -0
  299. data/vendor/chef/apache2/recipes/mod_authz_groupfile.rb +20 -0
  300. data/vendor/chef/apache2/recipes/mod_authz_host.rb +20 -0
  301. data/vendor/chef/apache2/recipes/mod_authz_user.rb +20 -0
  302. data/vendor/chef/apache2/recipes/mod_autoindex.rb +20 -0
  303. data/vendor/chef/apache2/recipes/mod_cgi.rb +20 -0
  304. data/vendor/chef/apache2/recipes/mod_dav.rb +20 -0
  305. data/vendor/chef/apache2/recipes/mod_dav_svn.rb +20 -0
  306. data/vendor/chef/apache2/recipes/mod_deflate.rb +20 -0
  307. data/vendor/chef/apache2/recipes/mod_dir.rb +20 -0
  308. data/vendor/chef/apache2/recipes/mod_env.rb +20 -0
  309. data/vendor/chef/apache2/recipes/mod_expires.rb +20 -0
  310. data/vendor/chef/apache2/recipes/mod_fcgid.rb +35 -0
  311. data/vendor/chef/apache2/recipes/mod_headers.rb +20 -0
  312. data/vendor/chef/apache2/recipes/mod_ldap.rb +20 -0
  313. data/vendor/chef/apache2/recipes/mod_log_config.rb +20 -0
  314. data/vendor/chef/apache2/recipes/mod_mime.rb +20 -0
  315. data/vendor/chef/apache2/recipes/mod_negotiation.rb +20 -0
  316. data/vendor/chef/apache2/recipes/mod_php5.rb +27 -0
  317. data/vendor/chef/apache2/recipes/mod_proxy.rb +20 -0
  318. data/vendor/chef/apache2/recipes/mod_proxy_http.rb +20 -0
  319. data/vendor/chef/apache2/recipes/mod_python.rb +22 -0
  320. data/vendor/chef/apache2/recipes/mod_rewrite.rb +20 -0
  321. data/vendor/chef/apache2/recipes/mod_setenvif.rb +20 -0
  322. data/vendor/chef/apache2/recipes/mod_ssl.rb +20 -0
  323. data/vendor/chef/apache2/recipes/mod_status.rb +20 -0
  324. data/vendor/chef/apache2/templates/default/a2dismod.erb +22 -0
  325. data/vendor/chef/apache2/templates/default/a2dissite.erb +29 -0
  326. data/vendor/chef/apache2/templates/default/a2enmod.erb +37 -0
  327. data/vendor/chef/apache2/templates/default/a2ensite.erb +38 -0
  328. data/vendor/chef/apache2/templates/default/apache2.conf.erb +630 -0
  329. data/vendor/chef/apache2/templates/default/default-site.erb +45 -0
  330. data/vendor/chef/apache2/templates/default/port_apache.erb +2 -0
  331. data/vendor/chef/apache2/templates/default/ports.conf.erb +6 -0
  332. data/vendor/chef/apache2/templates/default/web_app.conf.erb +43 -0
  333. data/vendor/chef/chef-deploy/LICENSE +201 -0
  334. data/vendor/chef/chef-deploy/README.rdoc +24 -0
  335. data/vendor/chef/chef-deploy/Rakefile +57 -0
  336. data/vendor/chef/chef-deploy/TODO +4 -0
  337. data/vendor/chef/chef-deploy/lib/chef-deploy/cached_deploy.rb +230 -0
  338. data/vendor/chef/chef-deploy/lib/chef-deploy/git.rb +132 -0
  339. data/vendor/chef/chef-deploy/lib/chef-deploy/subversion.rb +98 -0
  340. data/vendor/chef/chef-deploy/lib/chef-deploy.rb +183 -0
  341. data/vendor/gems/butterfly/History.txt +4 -0
  342. data/vendor/gems/butterfly/PostInstall.txt +2 -0
  343. data/vendor/gems/butterfly/README.rdoc +48 -0
  344. data/vendor/gems/butterfly/Rakefile +62 -0
  345. data/vendor/gems/butterfly/VERSION.yml +4 -0
  346. data/vendor/gems/butterfly/bin/flutter +4 -0
  347. data/vendor/gems/butterfly/butterfly.gemspec +37 -0
  348. data/vendor/gems/butterfly/examples/config.ru +15 -0
  349. data/vendor/gems/butterfly/examples/my_app.rb +12 -0
  350. data/vendor/gems/butterfly/lib/butterfly.rb +14 -0
  351. data/vendor/gems/butterfly/lib/handler.rb +48 -0
  352. data/vendor/gems/butterfly/lib/request.rb +29 -0
  353. data/vendor/gems/butterfly/lib/response.rb +49 -0
  354. data/vendor/gems/butterfly/script/console +10 -0
  355. data/vendor/gems/butterfly/script/destroy +14 -0
  356. data/vendor/gems/butterfly/script/generate +14 -0
  357. data/vendor/gems/butterfly/test/test_adapter_base.rb +23 -0
  358. data/vendor/gems/butterfly/test/test_butterfly_request.rb +46 -0
  359. data/vendor/gems/butterfly/test/test_butterfly_response.rb +43 -0
  360. data/vendor/gems/butterfly/test/test_butterfly_server.rb +16 -0
  361. data/vendor/gems/butterfly/test/test_default.rb +12 -0
  362. data/vendor/gems/butterfly/test/test_helper.rb +6 -0
  363. data/vendor/gems/dslify/History.txt +4 -0
  364. data/vendor/gems/dslify/Manifest.txt +25 -0
  365. data/vendor/gems/dslify/PostInstall.txt +5 -0
  366. data/vendor/gems/dslify/README.txt +60 -0
  367. data/vendor/gems/dslify/Rakefile +56 -0
  368. data/{config → vendor/gems/dslify/config}/hoe.rb +12 -55
  369. data/vendor/gems/dslify/config/requirements.rb +15 -0
  370. data/vendor/gems/dslify/dslify.gemspec +40 -0
  371. data/vendor/gems/dslify/lib/dslify/dslify.rb +76 -0
  372. data/vendor/gems/dslify/lib/dslify/version.rb +10 -0
  373. data/vendor/gems/dslify/lib/dslify.rb +7 -0
  374. data/vendor/gems/dslify/script/console +10 -0
  375. data/vendor/gems/dslify/script/destroy +14 -0
  376. data/vendor/gems/dslify/script/generate +14 -0
  377. data/{script → vendor/gems/dslify/script}/txt2html +4 -4
  378. data/{setup.rb → vendor/gems/dslify/setup.rb} +3 -3
  379. data/{tasks → vendor/gems/dslify/tasks}/deployment.rake +4 -18
  380. data/vendor/gems/dslify/tasks/environment.rake +7 -0
  381. data/{tasks → vendor/gems/dslify/tasks}/website.rake +0 -0
  382. data/vendor/gems/dslify/test/test_dslify.rb +138 -0
  383. data/vendor/gems/dslify/website/index.html +86 -0
  384. data/vendor/gems/dslify/website/index.txt +83 -0
  385. data/{website → vendor/gems/dslify/website}/javascripts/rounded_corners_lite.inc.js +0 -0
  386. data/{website → vendor/gems/dslify/website}/stylesheets/screen.css +18 -27
  387. data/{website → vendor/gems/dslify/website}/template.html.erb +1 -2
  388. data/vendor/gems/parenting/History.txt +4 -0
  389. data/vendor/gems/parenting/Manifest.txt +14 -0
  390. data/vendor/gems/parenting/PostInstall.txt +2 -0
  391. data/vendor/gems/parenting/README.rdoc +47 -0
  392. data/vendor/gems/parenting/Rakefile +28 -0
  393. data/vendor/gems/parenting/lib/parenting/parenting.rb +61 -0
  394. data/vendor/gems/parenting/lib/parenting.rb +10 -0
  395. data/vendor/gems/parenting/parenting.gemspec +39 -0
  396. data/vendor/gems/parenting/script/console +10 -0
  397. data/vendor/gems/parenting/script/destroy +14 -0
  398. data/vendor/gems/parenting/script/generate +14 -0
  399. data/vendor/gems/parenting/test/file_to_eval.rb +9 -0
  400. data/vendor/gems/parenting/test/test_helper.rb +5 -0
  401. data/vendor/gems/parenting/test/test_parenting.rb +117 -0
  402. data/vendor/gems/suitcase/LICENSE +20 -0
  403. data/vendor/gems/suitcase/README.rdoc +31 -0
  404. data/vendor/gems/suitcase/Rakefile +57 -0
  405. data/vendor/gems/suitcase/VERSION.yml +4 -0
  406. data/vendor/gems/suitcase/lib/suitcase/unzipper.rb +15 -0
  407. data/vendor/gems/suitcase/lib/suitcase/zipper.rb +119 -0
  408. data/vendor/gems/suitcase/lib/suitcase.rb +5 -0
  409. data/vendor/gems/suitcase/suitcase.gemspec +32 -0
  410. data/vendor/gems/suitcase/test/suitcase_test.rb +102 -0
  411. data/vendor/gems/suitcase/test/test_dir/box.rb +1 -0
  412. data/vendor/gems/suitcase/test/test_dir/test.txt +1 -0
  413. data/vendor/gems/suitcase/test/test_helper.rb +12 -0
  414. metadata +370 -343
  415. data/Capfile +0 -1
  416. data/Manifest.txt +0 -414
  417. data/bin/cloud-add-keypair +0 -28
  418. data/bin/cloud-ensure-provisioning +0 -39
  419. data/bin/cloud-maintain +0 -30
  420. data/bin/cloud-refresh +0 -17
  421. data/bin/cloud-run +0 -18
  422. data/bin/cloud-stats +0 -17
  423. data/bin/messenger-get-current-nodes +0 -14
  424. data/bin/pool +0 -31
  425. data/bin/pool-describe +0 -8
  426. data/bin/pool-generate +0 -18
  427. data/bin/pool-init +0 -28
  428. data/bin/pool-list +0 -30
  429. data/bin/pool-start +0 -26
  430. data/bin/server-build-messenger +0 -27
  431. data/bin/server-clean-cert-for +0 -15
  432. data/bin/server-list-responding +0 -24
  433. data/bin/server-start-client +0 -29
  434. data/bin/server-start-master +0 -26
  435. data/bin/server-start-node +0 -32
  436. data/bin/server-stop-client +0 -3
  437. data/bin/server-stop-master +0 -3
  438. data/bin/server-stop-node +0 -3
  439. data/bin/server-update-hosts +0 -49
  440. data/lib/erlang/messenger/Emakefile +0 -1
  441. data/lib/erlang/messenger/Makefile +0 -15
  442. data/lib/erlang/messenger/README +0 -5
  443. data/lib/erlang/messenger/Rakefile +0 -72
  444. data/lib/erlang/messenger/control +0 -11
  445. data/lib/erlang/messenger/ebin/client.app +0 -19
  446. data/lib/erlang/messenger/ebin/client_app.beam +0 -0
  447. data/lib/erlang/messenger/ebin/client_server.beam +0 -0
  448. data/lib/erlang/messenger/ebin/erl_crash.dump +0 -10326
  449. data/lib/erlang/messenger/ebin/master.app +0 -19
  450. data/lib/erlang/messenger/ebin/master_app.beam +0 -0
  451. data/lib/erlang/messenger/ebin/node.app +0 -19
  452. data/lib/erlang/messenger/ebin/node_app.beam +0 -0
  453. data/lib/erlang/messenger/ebin/packager.app +0 -19
  454. data/lib/erlang/messenger/ebin/pm_client.beam +0 -0
  455. data/lib/erlang/messenger/ebin/pm_client_old.beam +0 -0
  456. data/lib/erlang/messenger/ebin/pm_client_rel-0.1.rel +0 -1
  457. data/lib/erlang/messenger/ebin/pm_client_supervisor.beam +0 -0
  458. data/lib/erlang/messenger/ebin/pm_cluster.beam +0 -0
  459. data/lib/erlang/messenger/ebin/pm_event_manager.beam +0 -0
  460. data/lib/erlang/messenger/ebin/pm_master.beam +0 -0
  461. data/lib/erlang/messenger/ebin/pm_master_event_handler.beam +0 -0
  462. data/lib/erlang/messenger/ebin/pm_master_rel-0.1.rel +0 -1
  463. data/lib/erlang/messenger/ebin/pm_master_supervisor.beam +0 -0
  464. data/lib/erlang/messenger/ebin/pm_node.beam +0 -0
  465. data/lib/erlang/messenger/ebin/pm_node_rel-0.1.rel +0 -1
  466. data/lib/erlang/messenger/ebin/pm_node_supervisor.beam +0 -0
  467. data/lib/erlang/messenger/ebin/pm_packager.beam +0 -0
  468. data/lib/erlang/messenger/ebin/pm_spawner.beam +0 -0
  469. data/lib/erlang/messenger/ebin/pm_strings.beam +0 -0
  470. data/lib/erlang/messenger/ebin/utils.beam +0 -0
  471. data/lib/erlang/messenger/include/defines.hrl +0 -27
  472. data/lib/erlang/messenger/lib/eunit/AUTHORS +0 -2
  473. data/lib/erlang/messenger/lib/eunit/CHANGELOG +0 -14
  474. data/lib/erlang/messenger/lib/eunit/COPYING +0 -504
  475. data/lib/erlang/messenger/lib/eunit/Makefile +0 -28
  476. data/lib/erlang/messenger/lib/eunit/NOTES +0 -276
  477. data/lib/erlang/messenger/lib/eunit/README +0 -3
  478. data/lib/erlang/messenger/lib/eunit/doc/edoc-info +0 -3
  479. data/lib/erlang/messenger/lib/eunit/doc/erlang.png +0 -0
  480. data/lib/erlang/messenger/lib/eunit/doc/eunit.html +0 -172
  481. data/lib/erlang/messenger/lib/eunit/doc/index.html +0 -17
  482. data/lib/erlang/messenger/lib/eunit/doc/modules-frame.html +0 -12
  483. data/lib/erlang/messenger/lib/eunit/doc/overview-summary.html +0 -984
  484. data/lib/erlang/messenger/lib/eunit/doc/overview.edoc +0 -980
  485. data/lib/erlang/messenger/lib/eunit/doc/packages-frame.html +0 -11
  486. data/lib/erlang/messenger/lib/eunit/doc/stylesheet.css +0 -55
  487. data/lib/erlang/messenger/lib/eunit/ebin/autoload.beam +0 -0
  488. data/lib/erlang/messenger/lib/eunit/ebin/code_monitor.beam +0 -0
  489. data/lib/erlang/messenger/lib/eunit/ebin/eunit.app +0 -21
  490. data/lib/erlang/messenger/lib/eunit/ebin/eunit.appup +0 -1
  491. data/lib/erlang/messenger/lib/eunit/ebin/eunit.beam +0 -0
  492. data/lib/erlang/messenger/lib/eunit/ebin/eunit_autoexport.beam +0 -0
  493. data/lib/erlang/messenger/lib/eunit/ebin/eunit_data.beam +0 -0
  494. data/lib/erlang/messenger/lib/eunit/ebin/eunit_lib.beam +0 -0
  495. data/lib/erlang/messenger/lib/eunit/ebin/eunit_proc.beam +0 -0
  496. data/lib/erlang/messenger/lib/eunit/ebin/eunit_serial.beam +0 -0
  497. data/lib/erlang/messenger/lib/eunit/ebin/eunit_server.beam +0 -0
  498. data/lib/erlang/messenger/lib/eunit/ebin/eunit_striptests.beam +0 -0
  499. data/lib/erlang/messenger/lib/eunit/ebin/eunit_test.beam +0 -0
  500. data/lib/erlang/messenger/lib/eunit/ebin/eunit_tests.beam +0 -0
  501. data/lib/erlang/messenger/lib/eunit/ebin/eunit_tty.beam +0 -0
  502. data/lib/erlang/messenger/lib/eunit/ebin/file_monitor.beam +0 -0
  503. data/lib/erlang/messenger/lib/eunit/examples/eunit_examples.erl +0 -339
  504. data/lib/erlang/messenger/lib/eunit/examples/fib.erl +0 -19
  505. data/lib/erlang/messenger/lib/eunit/examples/tests.txt +0 -1
  506. data/lib/erlang/messenger/lib/eunit/include/eunit.hrl +0 -313
  507. data/lib/erlang/messenger/lib/eunit/src/Makefile +0 -46
  508. data/lib/erlang/messenger/lib/eunit/src/autoload.erl +0 -388
  509. data/lib/erlang/messenger/lib/eunit/src/code_monitor.erl +0 -243
  510. data/lib/erlang/messenger/lib/eunit/src/eunit.app.src +0 -21
  511. data/lib/erlang/messenger/lib/eunit/src/eunit.appup.src +0 -1
  512. data/lib/erlang/messenger/lib/eunit/src/eunit.erl +0 -196
  513. data/lib/erlang/messenger/lib/eunit/src/eunit_autoexport.erl +0 -102
  514. data/lib/erlang/messenger/lib/eunit/src/eunit_data.erl +0 -798
  515. data/lib/erlang/messenger/lib/eunit/src/eunit_internal.hrl +0 -48
  516. data/lib/erlang/messenger/lib/eunit/src/eunit_lib.erl +0 -682
  517. data/lib/erlang/messenger/lib/eunit/src/eunit_proc.erl +0 -552
  518. data/lib/erlang/messenger/lib/eunit/src/eunit_serial.erl +0 -157
  519. data/lib/erlang/messenger/lib/eunit/src/eunit_server.erl +0 -340
  520. data/lib/erlang/messenger/lib/eunit/src/eunit_striptests.erl +0 -64
  521. data/lib/erlang/messenger/lib/eunit/src/eunit_test.erl +0 -334
  522. data/lib/erlang/messenger/lib/eunit/src/eunit_tests.erl +0 -45
  523. data/lib/erlang/messenger/lib/eunit/src/eunit_tty.erl +0 -272
  524. data/lib/erlang/messenger/lib/eunit/src/file_monitor.erl +0 -409
  525. data/lib/erlang/messenger/lib/eunit/sys.config +0 -9
  526. data/lib/erlang/messenger/lib/eunit/vsn.mk +0 -1
  527. data/lib/erlang/messenger/pm_client_rel-0.1.boot +0 -0
  528. data/lib/erlang/messenger/pm_client_rel-0.1.script +0 -238
  529. data/lib/erlang/messenger/pm_master_rel-0.1.boot +0 -0
  530. data/lib/erlang/messenger/pm_master_rel-0.1.script +0 -239
  531. data/lib/erlang/messenger/pm_node_rel-0.1.boot +0 -0
  532. data/lib/erlang/messenger/pm_node_rel-0.1.script +0 -237
  533. data/lib/erlang/messenger/src/client_app.erl +0 -39
  534. data/lib/erlang/messenger/src/client_server.erl +0 -60
  535. data/lib/erlang/messenger/src/master_app.erl +0 -39
  536. data/lib/erlang/messenger/src/node_app.erl +0 -39
  537. data/lib/erlang/messenger/src/pm_client.erl +0 -49
  538. data/lib/erlang/messenger/src/pm_client_supervisor.erl +0 -38
  539. data/lib/erlang/messenger/src/pm_cluster.erl +0 -61
  540. data/lib/erlang/messenger/src/pm_event_manager.erl +0 -27
  541. data/lib/erlang/messenger/src/pm_master.erl +0 -215
  542. data/lib/erlang/messenger/src/pm_master_event_handler.erl +0 -72
  543. data/lib/erlang/messenger/src/pm_master_supervisor.erl +0 -39
  544. data/lib/erlang/messenger/src/pm_node.erl +0 -200
  545. data/lib/erlang/messenger/src/pm_node_supervisor.erl +0 -38
  546. data/lib/erlang/messenger/src/pm_packager.erl +0 -76
  547. data/lib/erlang/messenger/src/pm_spawner.erl +0 -213
  548. data/lib/erlang/messenger/src/pm_strings.erl +0 -11
  549. data/lib/erlang/messenger/src/utils.erl +0 -73
  550. data/lib/erlang/messenger/useful_snippets +0 -17
  551. data/lib/poolparty/capistrano.rb +0 -18
  552. data/lib/poolparty/config/postlaunchmessage.txt +0 -5
  553. data/lib/poolparty/dependency_resolutions/base.rb +0 -12
  554. data/lib/poolparty/modules/configurable.rb +0 -36
  555. data/lib/poolparty/modules/method_missing_sugar.rb +0 -58
  556. data/lib/poolparty/monitors/monitors/cpu_monitor.rb +0 -15
  557. data/lib/poolparty/monitors/monitors/web_monitor.rb +0 -18
  558. data/lib/poolparty/net/messenger.rb +0 -72
  559. data/lib/poolparty/net/remote.rb +0 -38
  560. data/lib/poolparty/net/remote_bases/ec2.rb +0 -190
  561. data/lib/poolparty/net/remoter.rb +0 -343
  562. data/lib/poolparty/plugins/deploydirectory.rb +0 -71
  563. data/lib/poolparty/plugins/line.rb +0 -77
  564. data/lib/poolparty/plugins/rsyncmirror.rb +0 -26
  565. data/lib/poolparty/poolparty/custom_resource.rb +0 -45
  566. data/lib/poolparty/poolparty/resources/class_package.rb +0 -105
  567. data/lib/poolparty/poolparty/resources/conditional.rb +0 -67
  568. data/lib/poolparty/poolparty/resources/cron.rb +0 -14
  569. data/lib/poolparty/poolparty/resources/custom_service.rb +0 -30
  570. data/lib/poolparty/poolparty/resources/directory.rb +0 -26
  571. data/lib/poolparty/poolparty/resources/exec.rb +0 -28
  572. data/lib/poolparty/poolparty/resources/file.rb +0 -23
  573. data/lib/poolparty/poolparty/resources/gem_package.rb +0 -52
  574. data/lib/poolparty/poolparty/resources/host.rb +0 -14
  575. data/lib/poolparty/poolparty/resources/mount.rb +0 -22
  576. data/lib/poolparty/poolparty/resources/package.rb +0 -24
  577. data/lib/poolparty/poolparty/resources/remote_file.rb +0 -26
  578. data/lib/poolparty/poolparty/resources/service.rb +0 -21
  579. data/lib/poolparty/poolparty/resources/sshkey.rb +0 -23
  580. data/lib/poolparty/poolparty/resources/symlink.rb +0 -25
  581. data/lib/poolparty/poolparty/resources/variable.rb +0 -32
  582. data/lib/poolparty/provisioners/capistrano/capistrano.rb +0 -127
  583. data/lib/poolparty/provisioners/capistrano/capistrano_configurer.rb +0 -58
  584. data/lib/poolparty/provisioners/capistrano/recipies/base.rb +0 -104
  585. data/lib/poolparty/provisioners/capistrano/recipies/master.rb +0 -121
  586. data/lib/poolparty/provisioners/capistrano/recipies/slave.rb +0 -12
  587. data/lib/poolparty/provisioners/provisioner_base.rb +0 -204
  588. data/lib/poolparty/spec/core/string.rb +0 -16
  589. data/lib/poolparty/spec/matchers/a_spec_extensions_base.rb +0 -26
  590. data/lib/poolparty/spec/matchers/have_cron.rb +0 -28
  591. data/lib/poolparty/spec/matchers/have_deploydirectory.rb +0 -15
  592. data/lib/poolparty/spec/matchers/have_directory.rb +0 -31
  593. data/lib/poolparty/spec/matchers/have_exec.rb +0 -28
  594. data/lib/poolparty/spec/matchers/have_file.rb +0 -28
  595. data/lib/poolparty/spec/matchers/have_gempackage.rb +0 -28
  596. data/lib/poolparty/spec/matchers/have_git.rb +0 -28
  597. data/lib/poolparty/spec/matchers/have_host.rb +0 -28
  598. data/lib/poolparty/spec/matchers/have_mount.rb +0 -28
  599. data/lib/poolparty/spec/matchers/have_package.rb +0 -28
  600. data/lib/poolparty/spec/matchers/have_remotefile.rb +0 -28
  601. data/lib/poolparty/spec/matchers/have_rsyncmirror.rb +0 -28
  602. data/lib/poolparty/spec/matchers/have_service.rb +0 -28
  603. data/lib/poolparty/spec/matchers/have_sshkey.rb +0 -28
  604. data/lib/poolparty/spec/matchers/have_symlink.rb +0 -28
  605. data/lib/poolparty/spec/matchers/have_variable.rb +0 -32
  606. data/lib/poolparty/spec/spec/dynamic_matchers.rb +0 -63
  607. data/lib/poolparty/spec/spec/ensure_matchers_exist.rb +0 -7
  608. data/lib/poolparty/spec/templates/have_base.rb +0 -28
  609. data/lib/poolparty/templates/puppet.conf +0 -26
  610. data/lib/poolparty/templates/puppetcleaner +0 -12
  611. data/lib/poolparty/templates/puppetrerun +0 -22
  612. data/lib/poolparty/version.rb +0 -9
  613. data/lib/poolpartyspec.rb +0 -34
  614. data/log/pool.log +0 -0
  615. data/poolparty.gemspec +0 -580
  616. data/spec/poolparty/dependency_resolutions/base_spec.rb +0 -11
  617. data/spec/poolparty/modules/configurable_spec.rb +0 -29
  618. data/spec/poolparty/net/log/pool.log +0 -0
  619. data/spec/poolparty/net/messenger_spec.rb +0 -16
  620. data/spec/poolparty/plugins/svn_spec.rb +0 -16
  621. data/spec/poolparty/poolparty/custom_resource_spec.rb +0 -120
  622. data/spec/poolparty/poolparty/resources/class_package_spec.rb +0 -120
  623. data/spec/poolparty/poolparty/resources/conditional_spec.rb +0 -77
  624. data/spec/poolparty/poolparty/resources/cron_spec.rb +0 -50
  625. data/spec/poolparty/poolparty/resources/directory_spec.rb +0 -40
  626. data/spec/poolparty/poolparty/resources/exec_spec.rb +0 -37
  627. data/spec/poolparty/poolparty/resources/file_spec.rb +0 -40
  628. data/spec/poolparty/poolparty/resources/gem_spec.rb +0 -46
  629. data/spec/poolparty/poolparty/resources/host_spec.rb +0 -28
  630. data/spec/poolparty/poolparty/resources/package_spec.rb +0 -44
  631. data/spec/poolparty/poolparty/resources/remote_file_spec.rb +0 -40
  632. data/spec/poolparty/poolparty/resources/service_spec.rb +0 -45
  633. data/spec/poolparty/poolparty/resources/sshkey_spec.rb +0 -48
  634. data/spec/poolparty/poolparty/resources/symlink_spec.rb +0 -22
  635. data/spec/poolparty/poolparty/resources/user_spec.rb +0 -38
  636. data/spec/poolparty/poolparty/resources/variable_spec.rb +0 -24
  637. data/spec/poolparty/provisioners/capistrano/capistrano_spec.rb +0 -27
  638. data/spec/poolparty/provisioners/provisioner_base_spec.rb +0 -120
  639. data/spec/poolparty/spec/core/string_spec.rb +0 -57
  640. data/website/index.html +0 -107
  641. data/website/index.txt +0 -95
  642. data/website/stylesheets/code.css +0 -29
@@ -0,0 +1,675 @@
1
+ # 000-debian.conf -- this reproduces the default debian configuration
2
+
3
+ #
4
+ # Based upon the NCSA server configuration files originally by Rob McCool.
5
+ #
6
+ # This is the main Apache server configuration file. It contains the
7
+ # configuration directives that give the server its instructions.
8
+ # See <URL:http://httpd.apache.org/docs-2.1/> for detailed information about
9
+ # the directives.
10
+ #
11
+ # Do NOT simply read the instructions in here without understanding
12
+ # what they do. They're here only as hints or reminders. If you are unsure
13
+ # consult the online docs. You have been warned.
14
+ #
15
+ # The configuration directives are grouped into three basic sections:
16
+ # 1. Directives that control the operation of the Apache server process as a
17
+ # whole (the 'global environment').
18
+ # 2. Directives that define the parameters of the 'main' or 'default' server,
19
+ # which responds to requests that aren't handled by a virtual host.
20
+ # These directives also provide default values for the settings
21
+ # of all virtual hosts.
22
+ # 3. Settings for virtual hosts, which allow Web requests to be sent to
23
+ # different IP addresses or hostnames and have them handled by the
24
+ # same Apache server process.
25
+ #
26
+ # Configuration and logfile names: If the filenames you specify for many
27
+ # of the server's control files begin with "/" (or "drive:/" for Win32), the
28
+ # server will use that explicit path. If the filenames do *not* begin
29
+ # with "/", the value of ServerRoot is prepended -- so "/var/log/apache2/foo.log"
30
+ # with ServerRoot set to "" will be interpreted by the
31
+ # server as "//var/log/apache2/foo.log".
32
+ #
33
+
34
+ ### Section 1: Global Environment
35
+ #
36
+ # The directives in this section affect the overall operation of Apache,
37
+ # such as the number of concurrent requests it can handle or where it
38
+ # can find its configuration files.
39
+ #
40
+
41
+ #
42
+ # ServerRoot: The top of the directory tree under which the server's
43
+ # configuration, error, and log files are kept.
44
+ #
45
+ # NOTE! If you intend to place this on an NFS (or otherwise network)
46
+ # mounted filesystem then please read the LockFile documentation (available
47
+ # at <URL:http://httpd.apache.org/docs-2.1/mod/mpm_common.html#lockfile>);
48
+ # you will save yourself a lot of trouble.
49
+ #
50
+ # Do NOT add a slash at the end of the directory path.
51
+ #
52
+ ServerRoot "/etc/apache2"
53
+
54
+ #
55
+ # The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
56
+ #
57
+ #<IfModule !mpm_winnt.c>
58
+ #<IfModule !mpm_netware.c>
59
+ LockFile /var/lock/apache2/accept.lock
60
+ #</IfModule>
61
+ #</IfModule>
62
+
63
+ #
64
+ # PidFile: The file in which the server should record its process
65
+ # identification number when it starts.
66
+ #
67
+ PidFile /var/run/apache2.pid
68
+
69
+ #
70
+ # Timeout: The number of seconds before receives and sends time out.
71
+ #
72
+ Timeout 300
73
+
74
+ #
75
+ # KeepAlive: Whether or not to allow persistent connections (more than
76
+ # one request per connection). Set to "Off" to deactivate.
77
+ #
78
+ KeepAlive On
79
+
80
+ #
81
+ # MaxKeepAliveRequests: The maximum number of requests to allow
82
+ # during a persistent connection. Set to 0 to allow an unlimited amount.
83
+ # We recommend you leave this number high, for maximum performance.
84
+ #
85
+ MaxKeepAliveRequests 100
86
+
87
+ #
88
+ # KeepAliveTimeout: Number of seconds to wait for the next request from the
89
+ # same client on the same connection.
90
+ #
91
+ KeepAliveTimeout 15
92
+
93
+ ##
94
+ ## Server-Pool Size Regulation (MPM specific)
95
+ ##
96
+
97
+ # prefork MPM
98
+ # StartServers: number of server processes to start
99
+ # MinSpareServers: minimum number of server processes which are kept spare
100
+ # MaxSpareServers: maximum number of server processes which are kept spare
101
+ # MaxClients: maximum number of server processes allowed to start
102
+ # MaxRequestsPerChild: maximum number of requests a server process serves
103
+ <IfModule mpm_prefork_module>
104
+ StartServers 5
105
+ MinSpareServers 5
106
+ MaxSpareServers 10
107
+ MaxClients 150
108
+ MaxRequestsPerChild 0
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 mpm_worker_module>
119
+ StartServers 2
120
+ MaxClients 150
121
+ MinSpareThreads 25
122
+ MaxSpareThreads 75
123
+ ThreadsPerChild 25
124
+ MaxRequestsPerChild 0
125
+ </IfModule>
126
+
127
+ User www-data
128
+ Group www-data
129
+
130
+ #
131
+ # AccessFileName: The name of the file to look for in each directory
132
+ # for additional configuration directives. See also the AllowOverride
133
+ # directive.
134
+ #
135
+
136
+ AccessFileName .htaccess
137
+
138
+ #
139
+ # The following lines prevent .htaccess and .htpasswd files from being
140
+ # viewed by Web clients.
141
+ #
142
+ <Files ~ "^\.ht">
143
+ Order allow,deny
144
+ Deny from all
145
+ </Files>
146
+
147
+ TypesConfig /etc/mime.types
148
+
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
+
161
+ #
162
+ # HostnameLookups: Log the names of clients or just their IP addresses
163
+ # e.g., www.apache.org (on) or 204.62.129.132 (off).
164
+ # The default is off because it'd be overall better for the net if people
165
+ # had to knowingly turn this feature on, since enabling it means that
166
+ # each client request will result in AT LEAST one lookup request to the
167
+ # nameserver.
168
+ #
169
+ HostnameLookups Off
170
+
171
+ # ErrorLog: The location of the error log file.
172
+ # If you do not specify an ErrorLog directive within a <VirtualHost>
173
+ # container, error messages relating to that virtual host will be
174
+ # logged here. If you *do* define an error logfile for a <VirtualHost>
175
+ # container, that host's errors will be logged there and not here.
176
+ #
177
+ ErrorLog /var/log/apache2/error.log
178
+
179
+ #
180
+ # LogLevel: Control the number of messages logged to the error_log.
181
+ # Possible values include: debug, info, notice, warn, error, crit,
182
+ # alert, emerg.
183
+ #
184
+ LogLevel warn
185
+
186
+ # the apache2 puppet config already does this stuff:
187
+ ## Include module configuration:
188
+ #Include /etc/apache2/mods-enabled/*.load
189
+ #Include /etc/apache2/mods-enabled/*.conf
190
+ #
191
+ ## Include all the user configurations:
192
+ #Include /etc/apache2/httpd.conf
193
+ #
194
+ ## Include ports listing
195
+ #Include /etc/apache2/ports.conf
196
+ #
197
+ ## Include generic snippets of statements
198
+ #Include /etc/apache2/conf.d/
199
+
200
+ # the apache2 puppet config removes ports.conf, which would have been
201
+ # included above, and which contains (by default) the following line:
202
+
203
+ #
204
+ # The following directives define some format nicknames for use with
205
+ # a CustomLog directive (see below).
206
+ #
207
+ LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
208
+ LogFormat "%h %l %u %t \"%r\" %>s %b" common
209
+ LogFormat "%{Referer}i -> %U" referer
210
+ LogFormat "%{User-agent}i" agent
211
+
212
+ #
213
+ # ServerTokens
214
+ # This directive configures what you return as the Server HTTP response
215
+ # Header. The default is 'Full' which sends information about the OS-Type
216
+ # and compiled in modules.
217
+ # Set to one of: Full | OS | Minor | Minimal | Major | Prod
218
+ # where Full conveys the most information, and Prod the least.
219
+ #
220
+ ServerTokens Full
221
+
222
+ #
223
+ # Optionally add a line containing the server version and virtual host
224
+ # name to server-generated pages (internal error documents, FTP directory
225
+ # listings, mod_status and mod_info output etc., but not CGI generated
226
+ # documents or custom error documents).
227
+ # Set to "EMail" to also include a mailto: link to the ServerAdmin.
228
+ # Set to one of: On | Off | EMail
229
+ #
230
+ ServerSignature On
231
+
232
+ <IfModule alias_module>
233
+ #
234
+ # Aliases: Add here as many aliases as you need (with no limit). The format is
235
+ # Alias fakename realname
236
+ #
237
+ # Note that if you include a trailing / on fakename then the server will
238
+ # require it to be present in the URL. So "/icons" isn't aliased in this
239
+ # example, only "/icons/". If the fakename is slash-terminated, then the
240
+ # realname must also be slash terminated, and if the fakename omits the
241
+ # trailing slash, the realname must also omit it.
242
+ #
243
+ # We include the /icons/ alias for FancyIndexed directory listings. If
244
+ # you do not use FancyIndexing, you may comment this out.
245
+ #
246
+ Alias /icons/ "/usr/share/apache2/icons/"
247
+
248
+ <Directory "/usr/share/apache2/icons">
249
+ Options Indexes MultiViews
250
+ AllowOverride None
251
+ Order allow,deny
252
+ Allow from all
253
+ </Directory>
254
+
255
+ </IfModule>
256
+
257
+ #
258
+ # Directives controlling the display of server-generated directory listings.
259
+ #
260
+ <IfModule mod_autoindex.c>
261
+
262
+ #
263
+ # IndexOptions: Controls the appearance of server-generated directory
264
+ # listings.
265
+ #
266
+ IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=*
267
+
268
+ #
269
+ # AddIcon* directives tell the server which icon to show for different
270
+ # files or filename extensions. These are only displayed for
271
+ # FancyIndexed directories.
272
+ #
273
+ AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
274
+
275
+ AddIconByType (TXT,/icons/text.gif) text/*
276
+ AddIconByType (IMG,/icons/image2.gif) image/*
277
+ AddIconByType (SND,/icons/sound2.gif) audio/*
278
+ AddIconByType (VID,/icons/movie.gif) video/*
279
+
280
+ AddIcon /icons/binary.gif .bin .exe
281
+ AddIcon /icons/binhex.gif .hqx
282
+ AddIcon /icons/tar.gif .tar
283
+ AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
284
+ AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
285
+ AddIcon /icons/a.gif .ps .ai .eps
286
+ AddIcon /icons/layout.gif .html .shtml .htm .pdf
287
+ AddIcon /icons/text.gif .txt
288
+ AddIcon /icons/c.gif .c
289
+ AddIcon /icons/p.gif .pl .py
290
+ AddIcon /icons/f.gif .for
291
+ AddIcon /icons/dvi.gif .dvi
292
+ AddIcon /icons/uuencoded.gif .uu
293
+ AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
294
+ AddIcon /icons/tex.gif .tex
295
+ AddIcon /icons/bomb.gif core
296
+
297
+ AddIcon /icons/back.gif ..
298
+ AddIcon /icons/hand.right.gif README
299
+ AddIcon /icons/folder.gif ^^DIRECTORY^^
300
+ AddIcon /icons/blank.gif ^^BLANKICON^^
301
+
302
+ #
303
+ # DefaultIcon is which icon to show for files which do not have an icon
304
+ # explicitly set.
305
+ #
306
+ DefaultIcon /icons/unknown.gif
307
+
308
+ #
309
+ # AddDescription allows you to place a short description after a file in
310
+ # server-generated indexes. These are only displayed for FancyIndexed
311
+ # directories.
312
+ # Format: AddDescription "description" filename
313
+ #
314
+ #AddDescription "GZIP compressed document" .gz
315
+ #AddDescription "tar archive" .tar
316
+ #AddDescription "GZIP compressed tar archive" .tgz
317
+
318
+ #
319
+ # ReadmeName is the name of the README file the server will look for by
320
+ # default, and append to directory listings.
321
+ #
322
+ # HeaderName is the name of a file which should be prepended to
323
+ # directory indexes.
324
+ ReadmeName README.html
325
+ HeaderName HEADER.html
326
+
327
+ #
328
+ # IndexIgnore is a set of filenames which directory indexing should ignore
329
+ # and not include in the listing. Shell-style wildcarding is permitted.
330
+ #
331
+ IndexIgnore .??* *~ *# RCS CVS *,v *,t
332
+ </IfModule>
333
+
334
+ <IfModule mod_mime.c>
335
+
336
+ #
337
+ # AddType allows you to add to or override the MIME configuration
338
+ # file mime.types for specific file types.
339
+ #
340
+ #AddType application/x-gzip .tgz
341
+ #
342
+ # AddEncoding allows you to have certain browsers uncompress
343
+ # information on the fly. Note: Not all browsers support this.
344
+ # Despite the name similarity, the following Add* directives have
345
+ # nothing to do with the FancyIndexing customization directives above.
346
+ #
347
+ #AddEncoding x-compress .Z
348
+ #AddEncoding x-gzip .gz .tgz
349
+ #
350
+ # If the AddEncoding directives above are commented-out, then you
351
+ # probably should define those extensions to indicate media types:
352
+ #
353
+ AddType application/x-compress .Z
354
+ AddType application/x-gzip .gz .tgz
355
+
356
+ #
357
+ # DefaultLanguage and AddLanguage allows you to specify the language of
358
+ # a document. You can then use content negotiation to give a browser a
359
+ # file in a language the user can understand.
360
+ #
361
+ # Specify a default language. This means that all data
362
+ # going out without a specific language tag (see below) will
363
+ # be marked with this one. You probably do NOT want to set
364
+ # this unless you are sure it is correct for all cases.
365
+ #
366
+ # * It is generally better to not mark a page as
367
+ # * being a certain language than marking it with the wrong
368
+ # * language!
369
+ #
370
+ # DefaultLanguage nl
371
+ #
372
+ # Note 1: The suffix does not have to be the same as the language
373
+ # keyword --- those with documents in Polish (whose net-standard
374
+ # language code is pl) may wish to use "AddLanguage pl .po" to
375
+ # avoid the ambiguity with the common suffix for perl scripts.
376
+ #
377
+ # Note 2: The example entries below illustrate that in some cases
378
+ # the two character 'Language' abbreviation is not identical to
379
+ # the two character 'Country' code for its country,
380
+ # E.g. 'Danmark/dk' versus 'Danish/da'.
381
+ #
382
+ # Note 3: In the case of 'ltz' we violate the RFC by using a three char
383
+ # specifier. There is 'work in progress' to fix this and get
384
+ # the reference data for rfc1766 cleaned up.
385
+ #
386
+ # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
387
+ # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
388
+ # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
389
+ # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
390
+ # Norwegian (no) - Polish (pl) - Portugese (pt)
391
+ # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
392
+ # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
393
+ #
394
+ AddLanguage ca .ca
395
+ AddLanguage cs .cz .cs
396
+ AddLanguage da .dk
397
+ AddLanguage de .de
398
+ AddLanguage el .el
399
+ AddLanguage en .en
400
+ AddLanguage eo .eo
401
+ AddLanguage es .es
402
+ AddLanguage et .et
403
+ AddLanguage fr .fr
404
+ AddLanguage he .he
405
+ AddLanguage hr .hr
406
+ AddLanguage it .it
407
+ AddLanguage ja .ja
408
+ AddLanguage ko .ko
409
+ AddLanguage ltz .ltz
410
+ AddLanguage nl .nl
411
+ AddLanguage nn .nn
412
+ AddLanguage no .no
413
+ AddLanguage pl .po
414
+ AddLanguage pt .pt
415
+ AddLanguage pt-BR .pt-br
416
+ AddLanguage ru .ru
417
+ AddLanguage sv .sv
418
+ AddLanguage zh-CN .zh-cn
419
+ AddLanguage zh-TW .zh-tw
420
+ </IfModule>
421
+
422
+ <IfModule mod_negotiation.c>
423
+ #
424
+ # LanguagePriority allows you to give precedence to some languages
425
+ # in case of a tie during content negotiation.
426
+ #
427
+ # Just list the languages in decreasing order of preference. We have
428
+ # more or less alphabetized them here. You probably want to change this.
429
+ #
430
+ 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
431
+
432
+ #
433
+ # ForceLanguagePriority allows you to serve a result page rather than
434
+ # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
435
+ # [in case no accepted languages matched the available variants]
436
+ #
437
+ ForceLanguagePriority Prefer Fallback
438
+
439
+ </IfModule>
440
+
441
+ <IfModule mod_mime.c>
442
+ #
443
+ # Specify a default charset for all pages sent out. This is
444
+ # always a good idea and opens the door for future internationalisation
445
+ # of your web site, should you ever want it. Specifying it as
446
+ # a default does little harm; as the standard dictates that a page
447
+ # is in iso-8859-1 (latin1) unless specified otherwise i.e. you
448
+ # are merely stating the obvious. There are also some security
449
+ # reasons in browsers, related to javascript and URL parsing
450
+ # which encourage you to always set a default char set.
451
+ #
452
+ #AddDefaultCharset ISO-8859-1
453
+
454
+ #
455
+ # Commonly used filename extensions to character sets. You probably
456
+ # want to avoid clashes with the language extensions, unless you
457
+ # are good at carefully testing your setup after each change.
458
+ # See http://www.iana.org/assignments/character-sets for the
459
+ # official list of charset names and their respective RFCs.
460
+ #
461
+ AddCharset us-ascii .ascii .us-ascii
462
+ AddCharset ISO-8859-1 .iso8859-1 .latin1
463
+ AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
464
+ AddCharset ISO-8859-3 .iso8859-3 .latin3
465
+ AddCharset ISO-8859-4 .iso8859-4 .latin4
466
+ AddCharset ISO-8859-5 .iso8859-5 .cyr .iso-ru
467
+ AddCharset ISO-8859-6 .iso8859-6 .arb .arabic
468
+ AddCharset ISO-8859-7 .iso8859-7 .grk .greek
469
+ AddCharset ISO-8859-8 .iso8859-8 .heb .hebrew
470
+ AddCharset ISO-8859-9 .iso8859-9 .latin5 .trk
471
+ AddCharset ISO-8859-10 .iso8859-10 .latin6
472
+ AddCharset ISO-8859-13 .iso8859-13
473
+ AddCharset ISO-8859-14 .iso8859-14 .latin8
474
+ AddCharset ISO-8859-15 .iso8859-15 .latin9
475
+ AddCharset ISO-8859-16 .iso8859-16 .latin10
476
+ AddCharset ISO-2022-JP .iso2022-jp .jis
477
+ AddCharset ISO-2022-KR .iso2022-kr .kis
478
+ AddCharset ISO-2022-CN .iso2022-cn .cis
479
+ AddCharset Big5 .Big5 .big5 .b5
480
+ AddCharset cn-Big5 .cn-big5
481
+ # For russian, more than one charset is used (depends on client, mostly):
482
+ AddCharset WINDOWS-1251 .cp-1251 .win-1251
483
+ AddCharset CP866 .cp866
484
+ AddCharset KOI8 .koi8
485
+ AddCharset KOI8-E .koi8-e
486
+ AddCharset KOI8-r .koi8-r .koi8-ru
487
+ AddCharset KOI8-U .koi8-u
488
+ AddCharset KOI8-ru .koi8-uk .ua
489
+ AddCharset ISO-10646-UCS-2 .ucs2
490
+ AddCharset ISO-10646-UCS-4 .ucs4
491
+ AddCharset UTF-7 .utf7
492
+ AddCharset UTF-8 .utf8
493
+ AddCharset UTF-16 .utf16
494
+ AddCharset UTF-16BE .utf16be
495
+ AddCharset UTF-16LE .utf16le
496
+ AddCharset UTF-32 .utf32
497
+ AddCharset UTF-32BE .utf32be
498
+ AddCharset UTF-32LE .utf32le
499
+ AddCharset euc-cn .euc-cn
500
+ AddCharset euc-gb .euc-gb
501
+ AddCharset euc-jp .euc-jp
502
+ AddCharset euc-kr .euc-kr
503
+ #Not sure how euc-tw got in - IANA doesn't list it???
504
+ AddCharset EUC-TW .euc-tw
505
+ AddCharset gb2312 .gb2312 .gb
506
+ AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2
507
+ AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4
508
+ AddCharset shift_jis .shift_jis .sjis
509
+
510
+ #
511
+ # AddHandler allows you to map certain file extensions to "handlers":
512
+ # actions unrelated to filetype. These can be either built into the server
513
+ # or added with the Action directive (see below)
514
+ #
515
+ # To use CGI scripts outside of ScriptAliased directories:
516
+ # (You will also need to add "ExecCGI" to the "Options" directive.)
517
+ #
518
+ #AddHandler cgi-script .cgi
519
+
520
+ #
521
+ # For files that include their own HTTP headers:
522
+ #
523
+ #AddHandler send-as-is asis
524
+
525
+ #
526
+ # For server-parsed imagemap files:
527
+ #
528
+ #AddHandler imap-file map
529
+
530
+ #
531
+ # For type maps (negotiated resources):
532
+ # (This is enabled by default to allow the Apache "It Worked" page
533
+ # to be distributed in multiple languages.)
534
+ #
535
+ AddHandler type-map var
536
+
537
+ #
538
+ # Filters allow you to process content before it is sent to the client.
539
+ #
540
+ # To parse .shtml files for server-side includes (SSI):
541
+ # (You will also need to add "Includes" to the "Options" directive.)
542
+ #
543
+ AddType text/html .shtml
544
+ AddOutputFilter INCLUDES .shtml
545
+ </IfModule>
546
+
547
+ #
548
+ # Action lets you define media types that will execute a script whenever
549
+ # a matching file is called. This eliminates the need for repeated URL
550
+ # pathnames for oft-used CGI file processors.
551
+ # Format: Action media/type /cgi-script/location
552
+ # Format: Action handler-name /cgi-script/location
553
+ #
554
+
555
+ #
556
+ # Customizable error responses come in three flavors:
557
+ # 1) plain text 2) local redirects 3) external redirects
558
+ #
559
+ # Some examples:
560
+ #ErrorDocument 500 "The server made a boo boo."
561
+ #ErrorDocument 404 /missing.html
562
+ #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
563
+ #ErrorDocument 402 http://www.example.com/subscription_info.html
564
+ #
565
+
566
+ #
567
+ # Putting this all together, we can internationalize error responses.
568
+ #
569
+ # We use Alias to redirect any /error/HTTP_<error>.html.var response to
570
+ # our collection of by-error message multi-language collections. We use
571
+ # includes to substitute the appropriate text.
572
+ #
573
+ # You can modify the messages' appearance without changing any of the
574
+ # default HTTP_<error>.html.var files by adding the line:
575
+ #
576
+ # Alias /error/include/ "/your/include/path/"
577
+ #
578
+ # which allows you to create your own set of files by starting with the
579
+ # /usr/share/apache2/error/include/ files and copying them to /your/include/path/,
580
+ # even on a per-VirtualHost basis. The default include files will display
581
+ # your Apache version number and your ServerAdmin email address regardless
582
+ # of the setting of ServerSignature.
583
+ #
584
+ # The internationalized error documents require mod_alias, mod_include
585
+ # and mod_negotiation. To activate them, uncomment the following 30 lines.
586
+
587
+ # Alias /error/ "/usr/share/apache2/error/"
588
+ #
589
+ # <Directory "/usr/share/apache2/error">
590
+ # AllowOverride None
591
+ # Options IncludesNoExec
592
+ # AddOutputFilter Includes html
593
+ # AddHandler type-map var
594
+ # Order allow,deny
595
+ # Allow from all
596
+ # LanguagePriority en cs de es fr it nl sv pt-br ro
597
+ # ForceLanguagePriority Prefer Fallback
598
+ # </Directory>
599
+ #
600
+ # ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
601
+ # ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
602
+ # ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
603
+ # ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
604
+ # ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
605
+ # ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
606
+ # ErrorDocument 410 /error/HTTP_GONE.html.var
607
+ # ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
608
+ # ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
609
+ # ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
610
+ # ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
611
+ # ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
612
+ # ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
613
+ # ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
614
+ # ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
615
+ # ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
616
+ # ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
617
+
618
+ <IfModule mod_setenvif.c>
619
+ #
620
+ # The following directives modify normal HTTP response behavior to
621
+ # handle known problems with browser implementations.
622
+ #
623
+ BrowserMatch "Mozilla/2" nokeepalive
624
+ BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
625
+ BrowserMatch "RealPlayer 4\.0" force-response-1.0
626
+ BrowserMatch "Java/1\.0" force-response-1.0
627
+ BrowserMatch "JDK/1\.0" force-response-1.0
628
+
629
+ #
630
+ # The following directive disables redirects on non-GET requests for
631
+ # a directory that does not include the trailing slash. This fixes a
632
+ # problem with Microsoft WebFolders which does not appropriately handle
633
+ # redirects for folders with DAV methods.
634
+ # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
635
+ #
636
+ BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
637
+ BrowserMatch "MS FrontPage" redirect-carefully
638
+ BrowserMatch "^WebDrive" redirect-carefully
639
+ BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
640
+ BrowserMatch "^gnome-vfs/1.0" redirect-carefully
641
+ BrowserMatch "^XML Spy" redirect-carefully
642
+ BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
643
+ </IfModule>
644
+
645
+ #<IfModule mod_status.c>
646
+ #
647
+ # Allow server status reports generated by mod_status,
648
+ # with the URL of http://servername/server-status
649
+ # Change the ".example.com" to match your domain to enable.
650
+ #
651
+ #<Location /server-status>
652
+ # SetHandler server-status
653
+ # Order deny,allow
654
+ # Deny from all
655
+ # Allow from .example.com
656
+ #</Location>
657
+ #</IfModule>
658
+
659
+ #<IfModule mod_info.c>
660
+ #
661
+ # Allow remote server configuration reports, with the URL of
662
+ # http://servername/server-info (requires that mod_info.c be loaded).
663
+ # Change the ".example.com" to match your domain to enable.
664
+ #
665
+ #<Location /server-info>
666
+ # SetHandler server-info
667
+ # Order deny,allow
668
+ # Deny from all
669
+ # Allow from .example.com
670
+ #</Location>
671
+ #</IfModule>
672
+
673
+ # the puppet apache2 module does this already:
674
+ ## Include the virtual host configurations:
675
+ #Include /etc/apache2/sites-enabled/