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