passenger 5.0.4 → 5.0.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/.editorconfig +10 -0
- data/CHANGELOG +21 -0
- data/build/agents.rb +2 -2
- data/build/apache2.rb +6 -5
- data/build/common_library.rb +22 -7
- data/build/cxx_tests.rb +0 -3
- data/build/misc.rb +1 -1
- data/dev/parse_file_descriptor_log +119 -0
- data/doc/CloudLicensingConfiguration.html +387 -0
- data/doc/Design and Architecture.html +2430 -0
- data/doc/Packaging.html +488 -0
- data/doc/Security of user switching support.html +1833 -0
- data/doc/ServerOptimizationGuide.html +659 -0
- data/doc/ServerOptimizationGuide.txt.md +8 -0
- data/doc/Users guide Apache.html +9116 -0
- data/doc/Users guide Apache.idmap.txt +6 -2
- data/doc/Users guide Apache.txt +26 -7
- data/doc/Users guide Nginx.html +9025 -0
- data/doc/Users guide Nginx.idmap.txt +7 -3
- data/doc/Users guide Nginx.txt +29 -6
- data/doc/Users guide Standalone.html +3983 -0
- data/doc/Users guide.html +1748 -0
- data/doc/users_guide_snippets/installation.txt +4 -4
- data/ext/apache2/Configuration.cpp +16 -5
- data/ext/apache2/Configuration.hpp +4 -2
- data/ext/apache2/Hooks.cpp +44 -19
- data/ext/boost/libs/thread/src/pthread/once.cpp +2 -0
- data/ext/boost/libs/thread/src/pthread/once_atomic.cpp +6 -0
- data/ext/common/AgentsStarter.h +3 -2
- data/ext/common/ApplicationPool2/DirectSpawner.h +14 -4
- data/ext/common/ApplicationPool2/DummySpawner.h +12 -7
- data/ext/common/ApplicationPool2/Implementation.cpp +1 -1
- data/ext/common/ApplicationPool2/Process.h +2 -1
- data/ext/common/ApplicationPool2/Session.h +6 -6
- data/ext/common/ApplicationPool2/SmartSpawner.h +19 -4
- data/ext/common/ApplicationPool2/Socket.h +59 -27
- data/ext/common/ApplicationPool2/Spawner.h +2 -2
- data/ext/common/BackgroundEventLoop.cpp +6 -1
- data/ext/common/Constants.h +1 -1
- data/ext/common/EventedClient.h +1 -1
- data/ext/common/EventedServer.h +2 -2
- data/ext/common/FileDescriptor.h +25 -6
- data/ext/common/Logging.cpp +107 -52
- data/ext/common/Logging.h +146 -19
- data/ext/common/MessageClient.h +2 -2
- data/ext/common/MessageServer.h +3 -2
- data/ext/common/RandomGenerator.h +8 -7
- data/ext/common/SafeLibev.h +5 -1
- data/ext/common/ServerKit/AcceptLoadBalancer.h +9 -4
- data/ext/common/ServerKit/FdSinkChannel.h +5 -2
- data/ext/common/ServerKit/FdSourceChannel.h +5 -2
- data/ext/common/ServerKit/FileBufferedChannel.h +2 -0
- data/ext/common/ServerKit/FileBufferedFdSinkChannel.h +7 -2
- data/ext/common/ServerKit/HttpServer.h +6 -0
- data/ext/common/ServerKit/Server.h +40 -3
- data/ext/common/StaticString.h +20 -0
- data/ext/common/UnionStation/Connection.h +3 -1
- data/ext/common/UnionStation/Core.h +6 -4
- data/ext/common/Utils.cpp +4 -3
- data/ext/common/Utils/DateParsing.h +19 -5
- data/ext/common/Utils/FastStringStream.h +183 -0
- data/ext/common/Utils/IOUtils.cpp +47 -28
- data/ext/common/Utils/IOUtils.h +56 -12
- data/ext/common/Utils/MessagePassing.h +3 -3
- data/ext/common/Utils/ProcessMetricsCollector.h +2 -2
- data/ext/common/Utils/ScopeGuard.h +16 -5
- data/ext/common/Utils/SpeedMeter.h +2 -2
- data/ext/common/Utils/StrIntUtils.cpp +6 -6
- data/ext/common/Utils/StrIntUtils.h +2 -1
- data/ext/common/agents/Base.cpp +56 -4
- data/ext/common/agents/Base.h +2 -1
- data/ext/common/agents/HelperAgent/AdminServer.h +122 -11
- data/ext/common/agents/HelperAgent/Main.cpp +16 -5
- data/ext/common/agents/HelperAgent/OptionParser.h +7 -1
- data/ext/common/agents/HelperAgent/RequestHandler.h +1 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +10 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Request.h +8 -0
- data/ext/common/agents/HelperAgent/RequestHandler/TurboCaching.h +4 -3
- data/ext/common/agents/LoggingAgent/AdminServer.h +57 -11
- data/ext/common/agents/LoggingAgent/LoggingServer.h +3 -3
- data/ext/common/agents/LoggingAgent/Main.cpp +11 -3
- data/ext/common/agents/Watchdog/AdminServer.h +53 -11
- data/ext/common/agents/Watchdog/AgentWatcher.cpp +3 -3
- data/ext/common/agents/Watchdog/Main.cpp +13 -6
- data/ext/libeio/ecb.h +1 -1
- data/ext/libev/ev.c +13 -1
- data/ext/libev/ev.h +3 -0
- data/ext/nginx/Configuration.c +28 -6
- data/ext/nginx/Configuration.h +2 -1
- data/ext/nginx/ngx_http_passenger_module.c +5 -4
- data/ext/oxt/dynamic_thread_group.hpp +38 -5
- data/lib/phusion_passenger.rb +1 -1
- data/lib/phusion_passenger/common_library.rb +9 -5
- data/lib/phusion_passenger/config/reopen_logs_command.rb +2 -2
- data/lib/phusion_passenger/packaging.rb +23 -37
- data/passenger.gemspec +21 -21
- metadata +4 -453
- metadata.gz.asc +7 -7
- data/.gitignore +0 -68
- data/.travis.yml +0 -16
- data/Gemfile +0 -17
- data/Gemfile.lock +0 -39
- data/Vagrantfile +0 -54
- data/debian.template/README.Debian +0 -15
- data/debian.template/changelog +0 -316
- data/debian.template/compat +0 -1
- data/debian.template/control.erb +0 -91
- data/debian.template/copyright +0 -385
- data/debian.template/libapache2-mod-passenger.install +0 -3
- data/debian.template/libapache2-mod-passenger.postinst +0 -36
- data/debian.template/libapache2-mod-passenger.prerm +0 -15
- data/debian.template/locations.ini.erb +0 -14
- data/debian.template/passenger-dev.install.erb +0 -3
- data/debian.template/passenger-doc.install.erb +0 -2
- data/debian.template/passenger.conf +0 -6
- data/debian.template/passenger.docs +0 -4
- data/debian.template/passenger.install.erb +0 -14
- data/debian.template/passenger.load +0 -3
- data/debian.template/passenger.manpages +0 -3
- data/debian.template/patches/series +0 -0
- data/debian.template/rules.erb +0 -76
- data/debian.template/source/format +0 -1
- data/ext/common/EventedBufferedInput.h +0 -458
- data/packaging/rpm/LICENSE.txt +0 -19
- data/packaging/rpm/Makefile +0 -13
- data/packaging/rpm/README.md +0 -41
- data/packaging/rpm/Vagrantfile +0 -38
- data/packaging/rpm/Vagrantfile.centos +0 -30
- data/packaging/rpm/build +0 -170
- data/packaging/rpm/create_project +0 -41
- data/packaging/rpm/git_update +0 -88
- data/packaging/rpm/image/Dockerfile +0 -37
- data/packaging/rpm/image/Gemfile +0 -3
- data/packaging/rpm/image/Gemfile.lock +0 -12
- data/packaging/rpm/image/RPM-GPG-KEY-amazon-ga +0 -19
- data/packaging/rpm/image/amazon2014-i386.cfg +0 -96
- data/packaging/rpm/image/amazon2014-x86_64.cfg +0 -96
- data/packaging/rpm/image/site-defaults.cfg +0 -168
- data/packaging/rpm/internal/build_tasks.rb +0 -238
- data/packaging/rpm/internal/dummygpg +0 -11
- data/packaging/rpm/internal/exec_build +0 -42
- data/packaging/rpm/internal/get_distro_arch +0 -14
- data/packaging/rpm/internal/get_distro_id +0 -10
- data/packaging/rpm/internal/git_update +0 -27
- data/packaging/rpm/internal/inituidgid +0 -17
- data/packaging/rpm/internal/my_init +0 -344
- data/packaging/rpm/internal/python27 +0 -3
- data/packaging/rpm/internal/repo_update +0 -46
- data/packaging/rpm/internal/setuser +0 -26
- data/packaging/rpm/internal/tracking_helper +0 -40
- data/packaging/rpm/jenkins_release +0 -99
- data/packaging/rpm/lib/build_tasks_support.rb +0 -402
- data/packaging/rpm/lib/preprocessor.rb +0 -341
- data/packaging/rpm/nginx_spec/404.html +0 -119
- data/packaging/rpm/nginx_spec/50x.html +0 -119
- data/packaging/rpm/nginx_spec/index.html +0 -116
- data/packaging/rpm/nginx_spec/nginx-auto-cc-gcc.patch +0 -13
- data/packaging/rpm/nginx_spec/nginx-logo.png +0 -0
- data/packaging/rpm/nginx_spec/nginx-upgrade +0 -13
- data/packaging/rpm/nginx_spec/nginx-upgrade.8 +0 -151
- data/packaging/rpm/nginx_spec/nginx.conf +0 -131
- data/packaging/rpm/nginx_spec/nginx.init +0 -144
- data/packaging/rpm/nginx_spec/nginx.logrotate +0 -13
- data/packaging/rpm/nginx_spec/nginx.service +0 -15
- data/packaging/rpm/nginx_spec/nginx.spec.template +0 -560
- data/packaging/rpm/nginx_spec/nginx.sysconfig +0 -4
- data/packaging/rpm/nginx_spec/passenger.conf +0 -9
- data/packaging/rpm/nginx_spec/poweredby.png +0 -0
- data/packaging/rpm/passenger_spec/apache-passenger.conf.in +0 -26
- data/packaging/rpm/passenger_spec/config.json +0 -30
- data/packaging/rpm/passenger_spec/passenger.logrotate +0 -7
- data/packaging/rpm/passenger_spec/passenger.spec.template +0 -478
- data/packaging/rpm/passenger_spec/passenger_dynamic_thread_group.patch +0 -16
- data/packaging/rpm/passenger_spec/passenger_tests_default_config_example.patch +0 -44
- data/packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-GLIBC_HAVE_LONG_LONG.patch +0 -21
- data/packaging/rpm/repo_update +0 -114
- data/packaging/rpm/setup-system +0 -61
- data/packaging/rpm/shell +0 -10
- data/test/.rspec +0 -4
- data/test/config.json.example +0 -42
- data/test/config.json.rpm-automation +0 -15
- data/test/config.json.travis +0 -15
- data/test/config.json.vagrant +0 -30
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +0 -124
- data/test/cxx/ApplicationPool2/OptionsTest.cpp +0 -30
- data/test/cxx/ApplicationPool2/PoolTest.cpp +0 -2062
- data/test/cxx/ApplicationPool2/ProcessTest.cpp +0 -130
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +0 -243
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +0 -823
- data/test/cxx/BufferedIOTest.cpp +0 -364
- data/test/cxx/CachedFileStatTest.cpp +0 -402
- data/test/cxx/CxxTestMain.cpp +0 -181
- data/test/cxx/DataStructures/LStringTest.cpp +0 -275
- data/test/cxx/DataStructures/StringKeyTableTest.cpp +0 -199
- data/test/cxx/DateParsingTest.cpp +0 -75
- data/test/cxx/DechunkerTest.cpp +0 -250
- data/test/cxx/EventedBufferedInputTest.cpp +0 -758
- data/test/cxx/EventedClientTest.cpp +0 -523
- data/test/cxx/FileChangeCheckerTest.cpp +0 -331
- data/test/cxx/FileDescriptorTest.cpp +0 -69
- data/test/cxx/FilterSupportTest.cpp +0 -433
- data/test/cxx/IOUtilsTest.cpp +0 -861
- data/test/cxx/MemoryKit/MbufTest.cpp +0 -213
- data/test/cxx/MessageIOTest.cpp +0 -360
- data/test/cxx/MessagePassingTest.cpp +0 -81
- data/test/cxx/MessageReadersWritersTest.cpp +0 -576
- data/test/cxx/MessageServerTest.cpp +0 -393
- data/test/cxx/ProcessMetricsCollectorTest.cpp +0 -123
- data/test/cxx/RequestHandlerTest.cpp +0 -1463
- data/test/cxx/ResponseCacheTest.cpp +0 -322
- data/test/cxx/ServerKit/ChannelTest.cpp +0 -1467
- data/test/cxx/ServerKit/CookieUtilsTest.cpp +0 -274
- data/test/cxx/ServerKit/FileBufferedChannelTest.cpp +0 -992
- data/test/cxx/ServerKit/HeaderTableTest.cpp +0 -177
- data/test/cxx/ServerKit/HttpServerTest.cpp +0 -1580
- data/test/cxx/ServerKit/ServerTest.cpp +0 -408
- data/test/cxx/StaticStringTest.cpp +0 -220
- data/test/cxx/StringMapTest.cpp +0 -131
- data/test/cxx/SystemTimeTest.cpp +0 -37
- data/test/cxx/TemplateTest.cpp +0 -118
- data/test/cxx/TestSupport.cpp +0 -207
- data/test/cxx/TestSupport.h +0 -333
- data/test/cxx/UnionStationTest.cpp +0 -741
- data/test/cxx/Utils/StrIntUtilsTest.cpp +0 -39
- data/test/cxx/UtilsTest.cpp +0 -672
- data/test/cxx/VariantMapTest.cpp +0 -191
- data/test/gdbinit.example +0 -34
- data/test/integration_tests/apache2_tests.rb +0 -585
- data/test/integration_tests/downloaded_binaries_tests.rb +0 -185
- data/test/integration_tests/native_packaging_spec.rb +0 -368
- data/test/integration_tests/nginx_tests.rb +0 -402
- data/test/integration_tests/shared/example_webapp_tests.rb +0 -289
- data/test/integration_tests/source_packaging_test.rb +0 -201
- data/test/integration_tests/spec_helper.rb +0 -22
- data/test/integration_tests/standalone_tests.rb +0 -392
- data/test/node/line_reader_spec.js +0 -338
- data/test/node/spec_helper.js +0 -65
- data/test/oxt/backtrace_test.cpp +0 -88
- data/test/oxt/counter.hpp +0 -55
- data/test/oxt/dynamic_thread_group_test.cpp +0 -131
- data/test/oxt/oxt_test_main.cpp +0 -27
- data/test/oxt/spin_lock_test.cpp +0 -59
- data/test/oxt/syscall_interruption_test.cpp +0 -39
- data/test/ruby/debug_logging_spec.rb +0 -145
- data/test/ruby/message_channel_spec.rb +0 -196
- data/test/ruby/rack/loader_spec.rb +0 -42
- data/test/ruby/rack/preloader_spec.rb +0 -48
- data/test/ruby/rails3.0/loader_spec.rb +0 -26
- data/test/ruby/rails3.0/preloader_spec.rb +0 -32
- data/test/ruby/rails3.1/loader_spec.rb +0 -26
- data/test/ruby/rails3.1/preloader_spec.rb +0 -32
- data/test/ruby/rails3.2/loader_spec.rb +0 -26
- data/test/ruby/rails3.2/preloader_spec.rb +0 -32
- data/test/ruby/rails4.0/loader_spec.rb +0 -28
- data/test/ruby/rails4.0/preloader_spec.rb +0 -34
- data/test/ruby/rails4.1/loader_spec.rb +0 -28
- data/test/ruby/rails4.1/preloader_spec.rb +0 -34
- data/test/ruby/request_handler_spec.rb +0 -747
- data/test/ruby/shared/loader_sharedspec.rb +0 -247
- data/test/ruby/shared/rails/union_station_extensions_sharedspec.rb +0 -357
- data/test/ruby/shared/ruby_loader_sharedspec.rb +0 -55
- data/test/ruby/spec_helper.rb +0 -114
- data/test/ruby/standalone/runtime_installer_spec.rb +0 -402
- data/test/ruby/union_station_spec.rb +0 -288
- data/test/ruby/utils/file_system_watcher_spec.rb +0 -229
- data/test/ruby/utils/hosts_file_parser.rb +0 -258
- data/test/ruby/utils/tee_input_spec.rb +0 -235
- data/test/ruby/utils/unseekable_socket_spec.rb +0 -66
- data/test/ruby/utils_spec.rb +0 -41
- data/test/stub/apache2/httpd.conf.erb +0 -122
- data/test/stub/apache2/mime.types +0 -748
- data/test/stub/garbage1.dat +0 -0
- data/test/stub/garbage2.dat +0 -0
- data/test/stub/garbage3.dat +0 -0
- data/test/stub/http_request.yml +0 -23
- data/test/stub/index.html +0 -1
- data/test/stub/nginx/koi-utf +0 -109
- data/test/stub/nginx/koi-win +0 -103
- data/test/stub/nginx/mime.types +0 -70
- data/test/stub/nginx/nginx.conf.erb +0 -70
- data/test/stub/nginx/win-utf +0 -126
- data/test/stub/node/app.js +0 -133
- data/test/stub/node/public/.gitignore +0 -0
- data/test/stub/node/tmp/.gitignore +0 -0
- data/test/stub/rack/config.ru +0 -95
- data/test/stub/rack/library.rb +0 -16
- data/test/stub/rack/public/.gitignore +0 -0
- data/test/stub/rack/start.rb +0 -52
- data/test/stub/rack/tmp/.gitignore +0 -0
- data/test/stub/rails3.0/.gitignore +0 -4
- data/test/stub/rails3.0/Gemfile +0 -22
- data/test/stub/rails3.0/Gemfile.lock +0 -80
- data/test/stub/rails3.0/Rakefile +0 -10
- data/test/stub/rails3.0/app/controllers/application_controller.rb +0 -4
- data/test/stub/rails3.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.0/config.ru +0 -4
- data/test/stub/rails3.0/config/application.rb +0 -48
- data/test/stub/rails3.0/config/boot.rb +0 -13
- data/test/stub/rails3.0/config/database.yml +0 -22
- data/test/stub/rails3.0/config/environment.rb +0 -5
- data/test/stub/rails3.0/config/environments/development.rb +0 -19
- data/test/stub/rails3.0/config/environments/production.rb +0 -48
- data/test/stub/rails3.0/config/environments/test.rb +0 -32
- data/test/stub/rails3.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.0/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.0/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.0/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.0/config/locales/en.yml +0 -5
- data/test/stub/rails3.0/config/routes.rb +0 -58
- data/test/stub/rails3.0/db/seeds.rb +0 -7
- data/test/stub/rails3.0/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.0/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.0/log/.gitignore +0 -0
- data/test/stub/rails3.0/public/404.html +0 -26
- data/test/stub/rails3.0/public/422.html +0 -26
- data/test/stub/rails3.0/public/500.html +0 -26
- data/test/stub/rails3.0/public/favicon.ico +0 -0
- data/test/stub/rails3.0/public/index.html +0 -279
- data/test/stub/rails3.0/public/robots.txt +0 -5
- data/test/stub/rails3.0/public/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.0/script/rails +0 -9
- data/test/stub/rails3.0/test/performance/browsing_test.rb +0 -9
- data/test/stub/rails3.0/test/test_helper.rb +0 -13
- data/test/stub/rails3.0/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.1/.gitignore +0 -15
- data/test/stub/rails3.1/Gemfile +0 -37
- data/test/stub/rails3.1/Gemfile.lock +0 -115
- data/test/stub/rails3.1/README +0 -261
- data/test/stub/rails3.1/Rakefile +0 -7
- data/test/stub/rails3.1/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.1/app/assets/stylesheets/application.css +0 -7
- data/test/stub/rails3.1/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.1/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.1/app/models/.gitkeep +0 -0
- data/test/stub/rails3.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.1/config.ru +0 -4
- data/test/stub/rails3.1/config/application.rb +0 -48
- data/test/stub/rails3.1/config/boot.rb +0 -6
- data/test/stub/rails3.1/config/database.yml +0 -25
- data/test/stub/rails3.1/config/environment.rb +0 -5
- data/test/stub/rails3.1/config/environments/development.rb +0 -30
- data/test/stub/rails3.1/config/environments/production.rb +0 -60
- data/test/stub/rails3.1/config/environments/test.rb +0 -39
- data/test/stub/rails3.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.1/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.1/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.1/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.1/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.1/config/locales/en.yml +0 -5
- data/test/stub/rails3.1/config/routes.rb +0 -58
- data/test/stub/rails3.1/db/seeds.rb +0 -7
- data/test/stub/rails3.1/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.1/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.1/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.1/log/.gitkeep +0 -0
- data/test/stub/rails3.1/public/404.html +0 -26
- data/test/stub/rails3.1/public/422.html +0 -26
- data/test/stub/rails3.1/public/500.html +0 -26
- data/test/stub/rails3.1/public/favicon.ico +0 -0
- data/test/stub/rails3.1/public/index.html +0 -241
- data/test/stub/rails3.1/public/robots.txt +0 -5
- data/test/stub/rails3.1/script/rails +0 -6
- data/test/stub/rails3.1/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.1/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.1/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.1/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.1/test/test_helper.rb +0 -13
- data/test/stub/rails3.1/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.2/.gitignore +0 -15
- data/test/stub/rails3.2/Gemfile +0 -39
- data/test/stub/rails3.2/Gemfile.lock +0 -113
- data/test/stub/rails3.2/Rakefile +0 -7
- data/test/stub/rails3.2/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.2/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails3.2/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.2/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.2/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.2/app/models/.gitkeep +0 -0
- data/test/stub/rails3.2/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.2/config.ru +0 -4
- data/test/stub/rails3.2/config/application.rb +0 -62
- data/test/stub/rails3.2/config/boot.rb +0 -6
- data/test/stub/rails3.2/config/database.yml +0 -25
- data/test/stub/rails3.2/config/environment.rb +0 -5
- data/test/stub/rails3.2/config/environments/development.rb +0 -37
- data/test/stub/rails3.2/config/environments/production.rb +0 -67
- data/test/stub/rails3.2/config/environments/test.rb +0 -37
- data/test/stub/rails3.2/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.2/config/initializers/inflections.rb +0 -15
- data/test/stub/rails3.2/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.2/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.2/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.2/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.2/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.2/config/locales/en.yml +0 -5
- data/test/stub/rails3.2/config/routes.rb +0 -58
- data/test/stub/rails3.2/db/seeds.rb +0 -7
- data/test/stub/rails3.2/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.2/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.2/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.2/log/.gitkeep +0 -0
- data/test/stub/rails3.2/public/404.html +0 -26
- data/test/stub/rails3.2/public/422.html +0 -26
- data/test/stub/rails3.2/public/500.html +0 -25
- data/test/stub/rails3.2/public/favicon.ico +0 -0
- data/test/stub/rails3.2/public/index.html +0 -241
- data/test/stub/rails3.2/public/robots.txt +0 -5
- data/test/stub/rails3.2/script/rails +0 -6
- data/test/stub/rails3.2/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.2/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.2/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.2/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.2/test/test_helper.rb +0 -13
- data/test/stub/rails3.2/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails4.0/.gitignore +0 -16
- data/test/stub/rails4.0/Gemfile +0 -45
- data/test/stub/rails4.0/Gemfile.lock +0 -126
- data/test/stub/rails4.0/README.rdoc +0 -28
- data/test/stub/rails4.0/Rakefile +0 -6
- data/test/stub/rails4.0/app/assets/images/.keep +0 -0
- data/test/stub/rails4.0/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.0/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.0/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.0/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.0/app/mailers/.keep +0 -0
- data/test/stub/rails4.0/app/models/.keep +0 -0
- data/test/stub/rails4.0/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.0/bin/bundle +0 -3
- data/test/stub/rails4.0/bin/rails +0 -4
- data/test/stub/rails4.0/bin/rake +0 -4
- data/test/stub/rails4.0/config.ru +0 -4
- data/test/stub/rails4.0/config/application.rb +0 -23
- data/test/stub/rails4.0/config/boot.rb +0 -4
- data/test/stub/rails4.0/config/database.yml +0 -25
- data/test/stub/rails4.0/config/environment.rb +0 -5
- data/test/stub/rails4.0/config/environments/development.rb +0 -29
- data/test/stub/rails4.0/config/environments/production.rb +0 -80
- data/test/stub/rails4.0/config/environments/test.rb +0 -36
- data/test/stub/rails4.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.0/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.0/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails4.0/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.0/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.0/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.0/config/locales/en.yml +0 -23
- data/test/stub/rails4.0/config/routes.rb +0 -57
- data/test/stub/rails4.0/db/seeds.rb +0 -7
- data/test/stub/rails4.0/lib/assets/.keep +0 -0
- data/test/stub/rails4.0/lib/tasks/.keep +0 -0
- data/test/stub/rails4.0/log/.keep +0 -0
- data/test/stub/rails4.0/public/404.html +0 -58
- data/test/stub/rails4.0/public/422.html +0 -58
- data/test/stub/rails4.0/public/500.html +0 -57
- data/test/stub/rails4.0/public/favicon.ico +0 -0
- data/test/stub/rails4.0/public/robots.txt +0 -5
- data/test/stub/rails4.0/test/controllers/.keep +0 -0
- data/test/stub/rails4.0/test/fixtures/.keep +0 -0
- data/test/stub/rails4.0/test/helpers/.keep +0 -0
- data/test/stub/rails4.0/test/integration/.keep +0 -0
- data/test/stub/rails4.0/test/mailers/.keep +0 -0
- data/test/stub/rails4.0/test/models/.keep +0 -0
- data/test/stub/rails4.0/test/test_helper.rb +0 -15
- data/test/stub/rails4.0/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.0/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/rails4.1/.gitignore +0 -16
- data/test/stub/rails4.1/Gemfile +0 -45
- data/test/stub/rails4.1/Gemfile.lock +0 -129
- data/test/stub/rails4.1/README.rdoc +0 -28
- data/test/stub/rails4.1/Rakefile +0 -6
- data/test/stub/rails4.1/app/assets/images/.keep +0 -0
- data/test/stub/rails4.1/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.1/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.1/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.1/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.1/app/mailers/.keep +0 -0
- data/test/stub/rails4.1/app/models/.keep +0 -0
- data/test/stub/rails4.1/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.1/bin/bundle +0 -3
- data/test/stub/rails4.1/bin/rails +0 -4
- data/test/stub/rails4.1/bin/rake +0 -4
- data/test/stub/rails4.1/config.ru +0 -4
- data/test/stub/rails4.1/config/application.rb +0 -23
- data/test/stub/rails4.1/config/boot.rb +0 -4
- data/test/stub/rails4.1/config/database.yml +0 -25
- data/test/stub/rails4.1/config/environment.rb +0 -5
- data/test/stub/rails4.1/config/environments/development.rb +0 -29
- data/test/stub/rails4.1/config/environments/production.rb +0 -80
- data/test/stub/rails4.1/config/environments/test.rb +0 -36
- data/test/stub/rails4.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.1/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.1/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.1/config/initializers/passenger.rb +0 -5
- data/test/stub/rails4.1/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.1/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.1/config/locales/en.yml +0 -23
- data/test/stub/rails4.1/config/routes.rb +0 -57
- data/test/stub/rails4.1/db/seeds.rb +0 -7
- data/test/stub/rails4.1/lib/assets/.keep +0 -0
- data/test/stub/rails4.1/lib/tasks/.keep +0 -0
- data/test/stub/rails4.1/log/.keep +0 -0
- data/test/stub/rails4.1/public/404.html +0 -58
- data/test/stub/rails4.1/public/422.html +0 -58
- data/test/stub/rails4.1/public/500.html +0 -57
- data/test/stub/rails4.1/public/favicon.ico +0 -0
- data/test/stub/rails4.1/public/robots.txt +0 -5
- data/test/stub/rails4.1/test/controllers/.keep +0 -0
- data/test/stub/rails4.1/test/fixtures/.keep +0 -0
- data/test/stub/rails4.1/test/helpers/.keep +0 -0
- data/test/stub/rails4.1/test/integration/.keep +0 -0
- data/test/stub/rails4.1/test/mailers/.keep +0 -0
- data/test/stub/rails4.1/test/models/.keep +0 -0
- data/test/stub/rails4.1/test/test_helper.rb +0 -15
- data/test/stub/rails4.1/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.1/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/start_error.pl +0 -24
- data/test/stub/upload_data.txt +0 -494
- data/test/stub/wsgi/passenger_wsgi.py +0 -212
- data/test/stub/wsgi/public/.gitignore +0 -0
- data/test/stub/wsgi/tmp/.gitignore +0 -0
- data/test/support/allocate_memory.c +0 -14
- data/test/support/apache2_controller.rb +0 -258
- data/test/support/multipart.rb +0 -62
- data/test/support/nginx_controller.rb +0 -97
- data/test/support/placebo-preloader.rb +0 -88
- data/test/support/test_helper.rb +0 -455
- data/test/support/valgrind.h +0 -2539
- data/test/tut/tut.h +0 -1310
- data/test/tut/tut_reporter.h +0 -256
- data/test/valgrind-osx.supp +0 -7
data/test/stub/garbage1.dat
DELETED
Binary file
|
data/test/stub/garbage2.dat
DELETED
Binary file
|
data/test/stub/garbage3.dat
DELETED
Binary file
|
data/test/stub/http_request.yml
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SERVER_NAME: rails.test
|
3
|
-
HTTP_ACCEPT_ENCODING: gzip,deflate
|
4
|
-
HTTP_USER_AGENT: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9b3pre) Gecko/2008020507 Firefox/3.0b3pre
|
5
|
-
HTTP_CACHE_CONTROL: max-age=0
|
6
|
-
HTTP_IF_NONE_MATCH: "\"4b3ecee644e12a7a2203be7484eaecfc\""
|
7
|
-
HTTP_ACCEPT_LANGUAGE: en-us,en;q=0.5
|
8
|
-
HTTP_HOST: rails.test
|
9
|
-
SERVER_ADDR: 127.0.0.1
|
10
|
-
SERVER_PROTOCOL: HTTP/1.1
|
11
|
-
HTTP_KEEP_ALIVE: "300"
|
12
|
-
REMOTE_ADDR: 127.0.0.1
|
13
|
-
SERVER_SOFTWARE: Apache/2.2.4 (Ubuntu) mod_fastcgi/2.4.2 PHP/5.2.3-1ubuntu6.3 mod_ssl/2.2.4 OpenSSL/0.9.8e Phusion_Passenger/0.9.6
|
14
|
-
HTTP_ACCEPT_CHARSET: ISO-8859-1,utf-8;q=0.7,*;q=0.7
|
15
|
-
DOCUMENT_ROOT: /var/www/projects/app1-foobar/public
|
16
|
-
REQUEST_URI: /
|
17
|
-
SERVER_PORT: "80"
|
18
|
-
QUERY_STRING: ""
|
19
|
-
REMOTE_PORT: "36128"
|
20
|
-
SERVER_ADMIN: "[no address given]"
|
21
|
-
HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
|
22
|
-
HTTP_CONNECTION: keep-alive
|
23
|
-
REQUEST_METHOD: GET
|
data/test/stub/index.html
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
This is the stub directory.
|
data/test/stub/nginx/koi-utf
DELETED
@@ -1,109 +0,0 @@
|
|
1
|
-
|
2
|
-
# This map is not a full koi8-r <> utf8 map: it does not contain
|
3
|
-
# box-drawing and some other characters. Besides this map contains
|
4
|
-
# several koi8-u and Byelorussian letters which are not in koi8-r.
|
5
|
-
# If you need a full and standard map, use contrib/unicode2nginx/koi-utf
|
6
|
-
# map instead.
|
7
|
-
|
8
|
-
charset_map koi8-r utf-8 {
|
9
|
-
|
10
|
-
80 E282AC ; # euro
|
11
|
-
|
12
|
-
95 E280A2 ; # bullet
|
13
|
-
|
14
|
-
9A C2A0 ; #
|
15
|
-
|
16
|
-
9E C2B7 ; # ·
|
17
|
-
|
18
|
-
A3 D191 ; # small yo
|
19
|
-
A4 D194 ; # small Ukrainian ye
|
20
|
-
|
21
|
-
A6 D196 ; # small Ukrainian i
|
22
|
-
A7 D197 ; # small Ukrainian yi
|
23
|
-
|
24
|
-
AD D291 ; # small Ukrainian soft g
|
25
|
-
AE D19E ; # small Byelorussian short u
|
26
|
-
|
27
|
-
B0 C2B0 ; # °
|
28
|
-
|
29
|
-
B3 D081 ; # capital YO
|
30
|
-
B4 D084 ; # capital Ukrainian YE
|
31
|
-
|
32
|
-
B6 D086 ; # capital Ukrainian I
|
33
|
-
B7 D087 ; # capital Ukrainian YI
|
34
|
-
|
35
|
-
B9 E28496 ; # numero sign
|
36
|
-
|
37
|
-
BD D290 ; # capital Ukrainian soft G
|
38
|
-
BE D18E ; # capital Byelorussian short U
|
39
|
-
|
40
|
-
BF C2A9 ; # (C)
|
41
|
-
|
42
|
-
C0 D18E ; # small yu
|
43
|
-
C1 D0B0 ; # small a
|
44
|
-
C2 D0B1 ; # small b
|
45
|
-
C3 D186 ; # small ts
|
46
|
-
C4 D0B4 ; # small d
|
47
|
-
C5 D0B5 ; # small ye
|
48
|
-
C6 D184 ; # small f
|
49
|
-
C7 D0B3 ; # small g
|
50
|
-
C8 D185 ; # small kh
|
51
|
-
C9 D0B8 ; # small i
|
52
|
-
CA D0B9 ; # small j
|
53
|
-
CB D0BA ; # small k
|
54
|
-
CC D0BB ; # small l
|
55
|
-
CD D0BC ; # small m
|
56
|
-
CE D0BD ; # small n
|
57
|
-
CF D0BE ; # small o
|
58
|
-
|
59
|
-
D0 D0BF ; # small p
|
60
|
-
D1 D18F ; # small ya
|
61
|
-
D2 D180 ; # small r
|
62
|
-
D3 D181 ; # small s
|
63
|
-
D4 D182 ; # small t
|
64
|
-
D5 D183 ; # small u
|
65
|
-
D6 D0B6 ; # small zh
|
66
|
-
D7 D0B2 ; # small v
|
67
|
-
D8 D18C ; # small soft sign
|
68
|
-
D9 D18B ; # small y
|
69
|
-
DA D0B7 ; # small z
|
70
|
-
DB D188 ; # small sh
|
71
|
-
DC D18D ; # small e
|
72
|
-
DD D189 ; # small shch
|
73
|
-
DE D187 ; # small ch
|
74
|
-
DF D18A ; # small hard sign
|
75
|
-
|
76
|
-
E0 D0AE ; # capital YU
|
77
|
-
E1 D090 ; # capital A
|
78
|
-
E2 D091 ; # capital B
|
79
|
-
E3 D0A6 ; # capital TS
|
80
|
-
E4 D094 ; # capital D
|
81
|
-
E5 D095 ; # capital YE
|
82
|
-
E6 D0A4 ; # capital F
|
83
|
-
E7 D093 ; # capital G
|
84
|
-
E8 D0A5 ; # capital KH
|
85
|
-
E9 D098 ; # capital I
|
86
|
-
EA D099 ; # capital J
|
87
|
-
EB D09A ; # capital K
|
88
|
-
EC D09B ; # capital L
|
89
|
-
ED D09C ; # capital M
|
90
|
-
EE D09D ; # capital N
|
91
|
-
EF D09E ; # capital O
|
92
|
-
|
93
|
-
F0 D09F ; # capital P
|
94
|
-
F1 D0AF ; # capital YA
|
95
|
-
F2 D0A0 ; # capital R
|
96
|
-
F3 D0A1 ; # capital S
|
97
|
-
F4 D0A2 ; # capital T
|
98
|
-
F5 D0A3 ; # capital U
|
99
|
-
F6 D096 ; # capital ZH
|
100
|
-
F7 D092 ; # capital V
|
101
|
-
F8 D0AC ; # capital soft sign
|
102
|
-
F9 D0AB ; # capital Y
|
103
|
-
FA D097 ; # capital Z
|
104
|
-
FB D0A8 ; # capital SH
|
105
|
-
FC D0AD ; # capital E
|
106
|
-
FD D0A9 ; # capital SHCH
|
107
|
-
FE D0A7 ; # capital CH
|
108
|
-
FF D0AA ; # capital hard sign
|
109
|
-
}
|
data/test/stub/nginx/koi-win
DELETED
@@ -1,103 +0,0 @@
|
|
1
|
-
|
2
|
-
charset_map koi8-r windows-1251 {
|
3
|
-
|
4
|
-
80 88 ; # euro
|
5
|
-
|
6
|
-
95 95 ; # bullet
|
7
|
-
|
8
|
-
9A A0 ; #
|
9
|
-
|
10
|
-
9E B7 ; # ·
|
11
|
-
|
12
|
-
A3 B8 ; # small yo
|
13
|
-
A4 BA ; # small Ukrainian ye
|
14
|
-
|
15
|
-
A6 B3 ; # small Ukrainian i
|
16
|
-
A7 BF ; # small Ukrainian yi
|
17
|
-
|
18
|
-
AD B4 ; # small Ukrainian soft g
|
19
|
-
AE A2 ; # small Byelorussian short u
|
20
|
-
|
21
|
-
B0 B0 ; # °
|
22
|
-
|
23
|
-
B3 A8 ; # capital YO
|
24
|
-
B4 AA ; # capital Ukrainian YE
|
25
|
-
|
26
|
-
B6 B2 ; # capital Ukrainian I
|
27
|
-
B7 AF ; # capital Ukrainian YI
|
28
|
-
|
29
|
-
B9 B9 ; # numero sign
|
30
|
-
|
31
|
-
BD A5 ; # capital Ukrainian soft G
|
32
|
-
BE A1 ; # capital Byelorussian short U
|
33
|
-
|
34
|
-
BF A9 ; # (C)
|
35
|
-
|
36
|
-
C0 FE ; # small yu
|
37
|
-
C1 E0 ; # small a
|
38
|
-
C2 E1 ; # small b
|
39
|
-
C3 F6 ; # small ts
|
40
|
-
C4 E4 ; # small d
|
41
|
-
C5 E5 ; # small ye
|
42
|
-
C6 F4 ; # small f
|
43
|
-
C7 E3 ; # small g
|
44
|
-
C8 F5 ; # small kh
|
45
|
-
C9 E8 ; # small i
|
46
|
-
CA E9 ; # small j
|
47
|
-
CB EA ; # small k
|
48
|
-
CC EB ; # small l
|
49
|
-
CD EC ; # small m
|
50
|
-
CE ED ; # small n
|
51
|
-
CF EE ; # small o
|
52
|
-
|
53
|
-
D0 EF ; # small p
|
54
|
-
D1 FF ; # small ya
|
55
|
-
D2 F0 ; # small r
|
56
|
-
D3 F1 ; # small s
|
57
|
-
D4 F2 ; # small t
|
58
|
-
D5 F3 ; # small u
|
59
|
-
D6 E6 ; # small zh
|
60
|
-
D7 E2 ; # small v
|
61
|
-
D8 FC ; # small soft sign
|
62
|
-
D9 FB ; # small y
|
63
|
-
DA E7 ; # small z
|
64
|
-
DB F8 ; # small sh
|
65
|
-
DC FD ; # small e
|
66
|
-
DD F9 ; # small shch
|
67
|
-
DE F7 ; # small ch
|
68
|
-
DF FA ; # small hard sign
|
69
|
-
|
70
|
-
E0 DE ; # capital YU
|
71
|
-
E1 C0 ; # capital A
|
72
|
-
E2 C1 ; # capital B
|
73
|
-
E3 D6 ; # capital TS
|
74
|
-
E4 C4 ; # capital D
|
75
|
-
E5 C5 ; # capital YE
|
76
|
-
E6 D4 ; # capital F
|
77
|
-
E7 C3 ; # capital G
|
78
|
-
E8 D5 ; # capital KH
|
79
|
-
E9 C8 ; # capital I
|
80
|
-
EA C9 ; # capital J
|
81
|
-
EB CA ; # capital K
|
82
|
-
EC CB ; # capital L
|
83
|
-
ED CC ; # capital M
|
84
|
-
EE CD ; # capital N
|
85
|
-
EF CE ; # capital O
|
86
|
-
|
87
|
-
F0 CF ; # capital P
|
88
|
-
F1 DF ; # capital YA
|
89
|
-
F2 D0 ; # capital R
|
90
|
-
F3 D1 ; # capital S
|
91
|
-
F4 D2 ; # capital T
|
92
|
-
F5 D3 ; # capital U
|
93
|
-
F6 C6 ; # capital ZH
|
94
|
-
F7 C2 ; # capital V
|
95
|
-
F8 DC ; # capital soft sign
|
96
|
-
F9 DB ; # capital Y
|
97
|
-
FA C7 ; # capital Z
|
98
|
-
FB D8 ; # capital SH
|
99
|
-
FC DD ; # capital E
|
100
|
-
FD D9 ; # capital SHCH
|
101
|
-
FE D7 ; # capital CH
|
102
|
-
FF DA ; # capital hard sign
|
103
|
-
}
|
data/test/stub/nginx/mime.types
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
|
2
|
-
types {
|
3
|
-
text/html html htm shtml;
|
4
|
-
text/css css;
|
5
|
-
text/xml xml rss;
|
6
|
-
image/gif gif;
|
7
|
-
image/jpeg jpeg jpg;
|
8
|
-
application/x-javascript js;
|
9
|
-
application/atom+xml atom;
|
10
|
-
|
11
|
-
text/mathml mml;
|
12
|
-
text/plain txt;
|
13
|
-
text/vnd.sun.j2me.app-descriptor jad;
|
14
|
-
text/vnd.wap.wml wml;
|
15
|
-
text/x-component htc;
|
16
|
-
|
17
|
-
image/png png;
|
18
|
-
image/tiff tif tiff;
|
19
|
-
image/vnd.wap.wbmp wbmp;
|
20
|
-
image/x-icon ico;
|
21
|
-
image/x-jng jng;
|
22
|
-
image/x-ms-bmp bmp;
|
23
|
-
image/svg+xml svg;
|
24
|
-
|
25
|
-
application/java-archive jar war ear;
|
26
|
-
application/mac-binhex40 hqx;
|
27
|
-
application/msword doc;
|
28
|
-
application/pdf pdf;
|
29
|
-
application/postscript ps eps ai;
|
30
|
-
application/rtf rtf;
|
31
|
-
application/vnd.ms-excel xls;
|
32
|
-
application/vnd.ms-powerpoint ppt;
|
33
|
-
application/vnd.wap.wmlc wmlc;
|
34
|
-
application/vnd.wap.xhtml+xml xhtml;
|
35
|
-
application/x-cocoa cco;
|
36
|
-
application/x-java-archive-diff jardiff;
|
37
|
-
application/x-java-jnlp-file jnlp;
|
38
|
-
application/x-makeself run;
|
39
|
-
application/x-perl pl pm;
|
40
|
-
application/x-pilot prc pdb;
|
41
|
-
application/x-rar-compressed rar;
|
42
|
-
application/x-redhat-package-manager rpm;
|
43
|
-
application/x-sea sea;
|
44
|
-
application/x-shockwave-flash swf;
|
45
|
-
application/x-stuffit sit;
|
46
|
-
application/x-tcl tcl tk;
|
47
|
-
application/x-x509-ca-cert der pem crt;
|
48
|
-
application/x-xpinstall xpi;
|
49
|
-
application/zip zip;
|
50
|
-
|
51
|
-
application/octet-stream bin exe dll;
|
52
|
-
application/octet-stream deb;
|
53
|
-
application/octet-stream dmg;
|
54
|
-
application/octet-stream eot;
|
55
|
-
application/octet-stream iso img;
|
56
|
-
application/octet-stream msi msp msm;
|
57
|
-
|
58
|
-
audio/midi mid midi kar;
|
59
|
-
audio/mpeg mp3;
|
60
|
-
audio/x-realaudio ra;
|
61
|
-
|
62
|
-
video/3gpp 3gpp 3gp;
|
63
|
-
video/mpeg mpeg mpg;
|
64
|
-
video/quicktime mov;
|
65
|
-
video/x-flv flv;
|
66
|
-
video/x-mng mng;
|
67
|
-
video/x-ms-asf asx asf;
|
68
|
-
video/x-ms-wmv wmv;
|
69
|
-
video/x-msvideo avi;
|
70
|
-
}
|
@@ -1,70 +0,0 @@
|
|
1
|
-
worker_processes 2;
|
2
|
-
|
3
|
-
error_log <%= @nginx_root %>/../test.log;
|
4
|
-
pid <%= @nginx_root %>/nginx.pid;
|
5
|
-
|
6
|
-
# Makes integration tests work when run in a CentOS container, with Node.js
|
7
|
-
# and Python installed through SCL.
|
8
|
-
env PATH;
|
9
|
-
env LD_LIBRARY_PATH;
|
10
|
-
env PYTHONPATH;
|
11
|
-
|
12
|
-
events {
|
13
|
-
worker_connections 1024;
|
14
|
-
}
|
15
|
-
|
16
|
-
http {
|
17
|
-
include <%= TEMPLATE_DIR %>/mime.types;
|
18
|
-
default_type application/octet-stream;
|
19
|
-
sendfile on;
|
20
|
-
keepalive_timeout 65;
|
21
|
-
server_names_hash_bucket_size 64;
|
22
|
-
|
23
|
-
log_format main '$remote_addr - $remote_user [$time_local] $request '
|
24
|
-
'"$status" $body_bytes_sent "$http_referer" '
|
25
|
-
'"$http_user_agent" "$http_x_forwarded_for"';
|
26
|
-
access_log <%= @nginx_root %>/access.log main;
|
27
|
-
|
28
|
-
passenger_root <%= @passenger_root %>;
|
29
|
-
passenger_ruby <%= PlatformInfo.ruby_command %>;
|
30
|
-
passenger_nodejs <%= PlatformInfo.find_command('node') %>;
|
31
|
-
passenger_default_user <%= CONFIG['default_user'] %>;
|
32
|
-
passenger_default_group <%= CONFIG['default_group'] %>;
|
33
|
-
passenger_max_pool_size <%= @max_pool_size %>;
|
34
|
-
passenger_log_level 7;
|
35
|
-
passenger_turbocaching off;
|
36
|
-
<% if @stat_throttle_rate %>passenger_stat_throttle_rate <%= @stat_throttle_rate %>;<% end %>
|
37
|
-
|
38
|
-
<% for server in @servers %>
|
39
|
-
server {
|
40
|
-
listen <%= @port %>;
|
41
|
-
<% server.values.each_pair do |key, value| %>
|
42
|
-
<%= key %> <%= value %>;
|
43
|
-
<% end %>
|
44
|
-
<%= server.extra %>
|
45
|
-
}
|
46
|
-
<% end %>
|
47
|
-
|
48
|
-
# HTTPS server
|
49
|
-
#
|
50
|
-
#server {
|
51
|
-
# listen 443;
|
52
|
-
# server_name localhost;
|
53
|
-
|
54
|
-
# ssl on;
|
55
|
-
# ssl_certificate cert.pem;
|
56
|
-
# ssl_certificate_key cert.key;
|
57
|
-
|
58
|
-
# ssl_session_timeout 5m;
|
59
|
-
|
60
|
-
# ssl_protocols SSLv2 SSLv3 TLSv1;
|
61
|
-
# ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
|
62
|
-
# ssl_prefer_server_ciphers on;
|
63
|
-
|
64
|
-
# location / {
|
65
|
-
# root html;
|
66
|
-
# index index.html index.htm;
|
67
|
-
# }
|
68
|
-
#}
|
69
|
-
|
70
|
-
}
|
data/test/stub/nginx/win-utf
DELETED
@@ -1,126 +0,0 @@
|
|
1
|
-
|
2
|
-
# This map is not a full windows-1251 <> utf8 map: it does not
|
3
|
-
# contain Serbian and Macedonian letters. If you need a full map,
|
4
|
-
# use contrib/unicode2nginx/win-utf map instead.
|
5
|
-
|
6
|
-
charset_map windows-1251 utf-8 {
|
7
|
-
|
8
|
-
82 E2809A ; # single low-9 quotation mark
|
9
|
-
|
10
|
-
84 E2809E ; # double low-9 quotation mark
|
11
|
-
85 E280A6 ; # ellipsis
|
12
|
-
86 E280A0 ; # dagger
|
13
|
-
87 E280A1 ; # double dagger
|
14
|
-
88 E282AC ; # euro
|
15
|
-
89 E280B0 ; # per mille
|
16
|
-
|
17
|
-
91 E28098 ; # left single quotation mark
|
18
|
-
92 E28099 ; # right single quotation mark
|
19
|
-
93 E2809C ; # left double quotation mark
|
20
|
-
94 E2809D ; # right double quotation mark
|
21
|
-
95 E280A2 ; # bullet
|
22
|
-
96 E28093 ; # en dash
|
23
|
-
97 E28094 ; # em dash
|
24
|
-
|
25
|
-
99 E284A2 ; # trade mark sign
|
26
|
-
|
27
|
-
A0 C2A0 ; #
|
28
|
-
A1 D18E ; # capital Byelorussian short U
|
29
|
-
A2 D19E ; # small Byelorussian short u
|
30
|
-
|
31
|
-
A4 C2A4 ; # currency sign
|
32
|
-
A5 D290 ; # capital Ukrainian soft G
|
33
|
-
A6 C2A6 ; # borken bar
|
34
|
-
A7 C2A7 ; # section sign
|
35
|
-
A8 D081 ; # capital YO
|
36
|
-
A9 C2A9 ; # (C)
|
37
|
-
AA D084 ; # capital Ukrainian YE
|
38
|
-
AB C2AB ; # left-pointing double angle quotation mark
|
39
|
-
AC C2AC ; # not sign
|
40
|
-
AD C2AD ; # soft hypen
|
41
|
-
AE C2AE ; # (R)
|
42
|
-
AF D087 ; # capital Ukrainian YI
|
43
|
-
|
44
|
-
B0 C2B0 ; # °
|
45
|
-
B1 C2B1 ; # plus-minus sign
|
46
|
-
B2 D086 ; # capital Ukrainian I
|
47
|
-
B3 D196 ; # small Ukrainian i
|
48
|
-
B4 D291 ; # small Ukrainian soft g
|
49
|
-
B5 C2B5 ; # micro sign
|
50
|
-
B6 C2B6 ; # pilcrow sign
|
51
|
-
B7 C2B7 ; # ·
|
52
|
-
B8 D191 ; # small yo
|
53
|
-
B9 E28496 ; # numero sign
|
54
|
-
BA D194 ; # small Ukrainian ye
|
55
|
-
BB C2BB ; # right-pointing double angle quotation mark
|
56
|
-
|
57
|
-
BF D197 ; # small Ukrainian yi
|
58
|
-
|
59
|
-
C0 D090 ; # capital A
|
60
|
-
C1 D091 ; # capital B
|
61
|
-
C2 D092 ; # capital V
|
62
|
-
C3 D093 ; # capital G
|
63
|
-
C4 D094 ; # capital D
|
64
|
-
C5 D095 ; # capital YE
|
65
|
-
C6 D096 ; # capital ZH
|
66
|
-
C7 D097 ; # capital Z
|
67
|
-
C8 D098 ; # capital I
|
68
|
-
C9 D099 ; # capital J
|
69
|
-
CA D09A ; # capital K
|
70
|
-
CB D09B ; # capital L
|
71
|
-
CC D09C ; # capital M
|
72
|
-
CD D09D ; # capital N
|
73
|
-
CE D09E ; # capital O
|
74
|
-
CF D09F ; # capital P
|
75
|
-
|
76
|
-
D0 D0A0 ; # capital R
|
77
|
-
D1 D0A1 ; # capital S
|
78
|
-
D2 D0A2 ; # capital T
|
79
|
-
D3 D0A3 ; # capital U
|
80
|
-
D4 D0A4 ; # capital F
|
81
|
-
D5 D0A5 ; # capital KH
|
82
|
-
D6 D0A6 ; # capital TS
|
83
|
-
D7 D0A7 ; # capital CH
|
84
|
-
D8 D0A8 ; # capital SH
|
85
|
-
D9 D0A9 ; # capital SHCH
|
86
|
-
DA D0AA ; # capital hard sign
|
87
|
-
DB D0AB ; # capital Y
|
88
|
-
DC D0AC ; # capital soft sign
|
89
|
-
DD D0AD ; # capital E
|
90
|
-
DE D0AE ; # capital YU
|
91
|
-
DF D0AF ; # capital YA
|
92
|
-
|
93
|
-
E0 D0B0 ; # small a
|
94
|
-
E1 D0B1 ; # small b
|
95
|
-
E2 D0B2 ; # small v
|
96
|
-
E3 D0B3 ; # small g
|
97
|
-
E4 D0B4 ; # small d
|
98
|
-
E5 D0B5 ; # small ye
|
99
|
-
E6 D0B6 ; # small zh
|
100
|
-
E7 D0B7 ; # small z
|
101
|
-
E8 D0B8 ; # small i
|
102
|
-
E9 D0B9 ; # small j
|
103
|
-
EA D0BA ; # small k
|
104
|
-
EB D0BB ; # small l
|
105
|
-
EC D0BC ; # small m
|
106
|
-
ED D0BD ; # small n
|
107
|
-
EE D0BE ; # small o
|
108
|
-
EF D0BF ; # small p
|
109
|
-
|
110
|
-
F0 D180 ; # small r
|
111
|
-
F1 D181 ; # small s
|
112
|
-
F2 D182 ; # small t
|
113
|
-
F3 D183 ; # small u
|
114
|
-
F4 D184 ; # small f
|
115
|
-
F5 D185 ; # small kh
|
116
|
-
F6 D186 ; # small ts
|
117
|
-
F7 D187 ; # small ch
|
118
|
-
F8 D188 ; # small sh
|
119
|
-
F9 D189 ; # small shch
|
120
|
-
FA D18A ; # small hard sign
|
121
|
-
FB D18B ; # small y
|
122
|
-
FC D18C ; # small soft sign
|
123
|
-
FD D18D ; # small e
|
124
|
-
FE D18E ; # small yu
|
125
|
-
FF D18F ; # small ya
|
126
|
-
}
|