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
@@ -1,119 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
2
|
-
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
4
|
-
<head>
|
5
|
-
<title>The page is temporarily unavailable</title>
|
6
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
7
|
-
<style type="text/css">
|
8
|
-
/*<![CDATA[*/
|
9
|
-
body {
|
10
|
-
background-color: #fff;
|
11
|
-
color: #000;
|
12
|
-
font-size: 0.9em;
|
13
|
-
font-family: sans-serif,helvetica;
|
14
|
-
margin: 0;
|
15
|
-
padding: 0;
|
16
|
-
}
|
17
|
-
:link {
|
18
|
-
color: #c00;
|
19
|
-
}
|
20
|
-
:visited {
|
21
|
-
color: #c00;
|
22
|
-
}
|
23
|
-
a:hover {
|
24
|
-
color: #f50;
|
25
|
-
}
|
26
|
-
h1 {
|
27
|
-
text-align: center;
|
28
|
-
margin: 0;
|
29
|
-
padding: 0.6em 2em 0.4em;
|
30
|
-
background-color: #294172;
|
31
|
-
color: #fff;
|
32
|
-
font-weight: normal;
|
33
|
-
font-size: 1.75em;
|
34
|
-
border-bottom: 2px solid #000;
|
35
|
-
}
|
36
|
-
h1 strong {
|
37
|
-
font-weight: bold;
|
38
|
-
font-size: 1.5em;
|
39
|
-
}
|
40
|
-
h2 {
|
41
|
-
text-align: center;
|
42
|
-
background-color: #3C6EB4;
|
43
|
-
font-size: 1.1em;
|
44
|
-
font-weight: bold;
|
45
|
-
color: #fff;
|
46
|
-
margin: 0;
|
47
|
-
padding: 0.5em;
|
48
|
-
border-bottom: 2px solid #294172;
|
49
|
-
}
|
50
|
-
h3 {
|
51
|
-
text-align: center;
|
52
|
-
background-color: #ff0000;
|
53
|
-
padding: 0.5em;
|
54
|
-
color: #fff;
|
55
|
-
}
|
56
|
-
hr {
|
57
|
-
display: none;
|
58
|
-
}
|
59
|
-
.content {
|
60
|
-
padding: 1em 5em;
|
61
|
-
}
|
62
|
-
.alert {
|
63
|
-
border: 2px solid #000;
|
64
|
-
}
|
65
|
-
|
66
|
-
img {
|
67
|
-
border: 2px solid #fff;
|
68
|
-
padding: 2px;
|
69
|
-
margin: 2px;
|
70
|
-
}
|
71
|
-
a:hover img {
|
72
|
-
border: 2px solid #294172;
|
73
|
-
}
|
74
|
-
.logos {
|
75
|
-
margin: 1em;
|
76
|
-
text-align: center;
|
77
|
-
}
|
78
|
-
/*]]>*/
|
79
|
-
</style>
|
80
|
-
</head>
|
81
|
-
|
82
|
-
<body>
|
83
|
-
<h1><strong>nginx error!</strong></h1>
|
84
|
-
|
85
|
-
<div class="content">
|
86
|
-
|
87
|
-
<h3>The page you are looking for is temporarily unavailable. Please try again later.</h3>
|
88
|
-
|
89
|
-
<div class="alert">
|
90
|
-
<h2>Website Administrator</h2>
|
91
|
-
<div class="content">
|
92
|
-
<p>Something has triggered an error on your
|
93
|
-
website. This is the default error page for
|
94
|
-
<strong>nginx</strong> that is distributed with
|
95
|
-
Fedora. It is located
|
96
|
-
<tt>/usr/share/nginx/html/50x.html</tt></p>
|
97
|
-
|
98
|
-
<p>You should customize this error page for your own
|
99
|
-
site or edit the <tt>error_page</tt> directive in
|
100
|
-
the <strong>nginx</strong> configuration file
|
101
|
-
<tt>/etc/nginx/nginx.conf</tt>.</p>
|
102
|
-
|
103
|
-
</div>
|
104
|
-
</div>
|
105
|
-
|
106
|
-
<div class="logos">
|
107
|
-
<a href="http://nginx.net/"><img
|
108
|
-
src="nginx-logo.png"
|
109
|
-
alt="[ Powered by nginx ]"
|
110
|
-
width="121" height="32" /></a>
|
111
|
-
|
112
|
-
<a href="http://fedoraproject.org/"><img
|
113
|
-
src="poweredby.png"
|
114
|
-
alt="[ Powered by Fedora ]"
|
115
|
-
width="88" height="31" /></a>
|
116
|
-
</div>
|
117
|
-
</div>
|
118
|
-
</body>
|
119
|
-
</html>
|
@@ -1,116 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
2
|
-
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
4
|
-
<head>
|
5
|
-
<title>Test Page for the Nginx HTTP Server on Fedora</title>
|
6
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
7
|
-
<style type="text/css">
|
8
|
-
/*<![CDATA[*/
|
9
|
-
body {
|
10
|
-
background-color: #fff;
|
11
|
-
color: #000;
|
12
|
-
font-size: 0.9em;
|
13
|
-
font-family: sans-serif,helvetica;
|
14
|
-
margin: 0;
|
15
|
-
padding: 0;
|
16
|
-
}
|
17
|
-
:link {
|
18
|
-
color: #c00;
|
19
|
-
}
|
20
|
-
:visited {
|
21
|
-
color: #c00;
|
22
|
-
}
|
23
|
-
a:hover {
|
24
|
-
color: #f50;
|
25
|
-
}
|
26
|
-
h1 {
|
27
|
-
text-align: center;
|
28
|
-
margin: 0;
|
29
|
-
padding: 0.6em 2em 0.4em;
|
30
|
-
background-color: #294172;
|
31
|
-
color: #fff;
|
32
|
-
font-weight: normal;
|
33
|
-
font-size: 1.75em;
|
34
|
-
border-bottom: 2px solid #000;
|
35
|
-
}
|
36
|
-
h1 strong {
|
37
|
-
font-weight: bold;
|
38
|
-
font-size: 1.5em;
|
39
|
-
}
|
40
|
-
h2 {
|
41
|
-
text-align: center;
|
42
|
-
background-color: #3C6EB4;
|
43
|
-
font-size: 1.1em;
|
44
|
-
font-weight: bold;
|
45
|
-
color: #fff;
|
46
|
-
margin: 0;
|
47
|
-
padding: 0.5em;
|
48
|
-
border-bottom: 2px solid #294172;
|
49
|
-
}
|
50
|
-
hr {
|
51
|
-
display: none;
|
52
|
-
}
|
53
|
-
.content {
|
54
|
-
padding: 1em 5em;
|
55
|
-
}
|
56
|
-
.alert {
|
57
|
-
border: 2px solid #000;
|
58
|
-
}
|
59
|
-
|
60
|
-
img {
|
61
|
-
border: 2px solid #fff;
|
62
|
-
padding: 2px;
|
63
|
-
margin: 2px;
|
64
|
-
}
|
65
|
-
a:hover img {
|
66
|
-
border: 2px solid #294172;
|
67
|
-
}
|
68
|
-
.logos {
|
69
|
-
margin: 1em;
|
70
|
-
text-align: center;
|
71
|
-
}
|
72
|
-
/*]]>*/
|
73
|
-
</style>
|
74
|
-
</head>
|
75
|
-
|
76
|
-
<body>
|
77
|
-
<h1>Welcome to <strong>nginx</strong> on Fedora!</h1>
|
78
|
-
|
79
|
-
<div class="content">
|
80
|
-
<p>This page is used to test the proper operation of the
|
81
|
-
<strong>nginx</strong> HTTP server after it has been
|
82
|
-
installed. If you can read this page, it means that the
|
83
|
-
web server installed at this site is working
|
84
|
-
properly.</p>
|
85
|
-
|
86
|
-
<div class="alert">
|
87
|
-
<h2>Website Administrator</h2>
|
88
|
-
<div class="content">
|
89
|
-
<p>This is the default <tt>index.html</tt> page that
|
90
|
-
is distributed with <strong>nginx</strong> on
|
91
|
-
Fedora. It is located in
|
92
|
-
<tt>/usr/share/nginx/html</tt>.</p>
|
93
|
-
|
94
|
-
<p>You should now put your content in a location of
|
95
|
-
your choice and edit the <tt>root</tt> configuration
|
96
|
-
directive in the <strong>nginx</strong>
|
97
|
-
configuration file
|
98
|
-
<tt>/etc/nginx/nginx.conf</tt>.</p>
|
99
|
-
|
100
|
-
</div>
|
101
|
-
</div>
|
102
|
-
|
103
|
-
<div class="logos">
|
104
|
-
<a href="http://nginx.net/"><img
|
105
|
-
src="nginx-logo.png"
|
106
|
-
alt="[ Powered by nginx ]"
|
107
|
-
width="121" height="32" /></a>
|
108
|
-
|
109
|
-
<a href="http://fedoraproject.org/"><img
|
110
|
-
src="poweredby.png"
|
111
|
-
alt="[ Powered by Fedora ]"
|
112
|
-
width="88" height="31" /></a>
|
113
|
-
</div>
|
114
|
-
</div>
|
115
|
-
</body>
|
116
|
-
</html>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
--- auto/cc/gcc.orig 2007-03-22 08:34:53.000000000 -0600
|
2
|
-
+++ auto/cc/gcc 2007-03-22 08:58:47.000000000 -0600
|
3
|
-
@@ -172,7 +172,9 @@
|
4
|
-
|
5
|
-
|
6
|
-
# stop on warning
|
7
|
-
-CFLAGS="$CFLAGS -Werror"
|
8
|
-
+# This combined with Fedora's FORTIFY_SOURCE=2 option causes it nginx
|
9
|
-
+# to not compile.
|
10
|
-
+#CFLAGS="$CFLAGS -Werror"
|
11
|
-
|
12
|
-
# debug
|
13
|
-
CFLAGS="$CFLAGS -g"
|
Binary file
|
@@ -1,13 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
[ ! -f /run/nginx.pid ] && exit 1
|
3
|
-
echo "Start new nginx master..."
|
4
|
-
/bin/systemctl kill --signal=SIGUSR2 nginx.service
|
5
|
-
sleep 5
|
6
|
-
[ ! -f /run/nginx.pid.oldbin ] && sleep 5
|
7
|
-
if [ ! -f /run/nginx.pid.oldbin ]; then
|
8
|
-
echo "Failed to start new nginx master."
|
9
|
-
exit 1
|
10
|
-
fi
|
11
|
-
echo "Stop old nginx master gracefully..."
|
12
|
-
oldpid=`cat /run/nginx.pid.oldbin 2>/dev/null`
|
13
|
-
/bin/kill -s QUIT $oldpid 2>/dev/null
|
@@ -1,151 +0,0 @@
|
|
1
|
-
.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16)
|
2
|
-
.\"
|
3
|
-
.\" Standard preamble:
|
4
|
-
.\" ========================================================================
|
5
|
-
.de Sp \" Vertical space (when we can't use .PP)
|
6
|
-
.if t .sp .5v
|
7
|
-
.if n .sp
|
8
|
-
..
|
9
|
-
.de Vb \" Begin verbatim text
|
10
|
-
.ft CW
|
11
|
-
.nf
|
12
|
-
.ne \\$1
|
13
|
-
..
|
14
|
-
.de Ve \" End verbatim text
|
15
|
-
.ft R
|
16
|
-
.fi
|
17
|
-
..
|
18
|
-
.\" Set up some character translations and predefined strings. \*(-- will
|
19
|
-
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
|
20
|
-
.\" double quote, and \*(R" will give a right double quote. \*(C+ will
|
21
|
-
.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
|
22
|
-
.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
|
23
|
-
.\" nothing in troff, for use with C<>.
|
24
|
-
.tr \(*W-
|
25
|
-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
|
26
|
-
.ie n \{\
|
27
|
-
. ds -- \(*W-
|
28
|
-
. ds PI pi
|
29
|
-
. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
|
30
|
-
. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
|
31
|
-
. ds L" ""
|
32
|
-
. ds R" ""
|
33
|
-
. ds C` ""
|
34
|
-
. ds C' ""
|
35
|
-
'br\}
|
36
|
-
.el\{\
|
37
|
-
. ds -- \|\(em\|
|
38
|
-
. ds PI \(*p
|
39
|
-
. ds L" ``
|
40
|
-
. ds R" ''
|
41
|
-
'br\}
|
42
|
-
.\"
|
43
|
-
.\" Escape single quotes in literal strings from groff's Unicode transform.
|
44
|
-
.ie \n(.g .ds Aq \(aq
|
45
|
-
.el .ds Aq '
|
46
|
-
.\"
|
47
|
-
.\" If the F register is turned on, we'll generate index entries on stderr for
|
48
|
-
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
|
49
|
-
.\" entries marked with X<> in POD. Of course, you'll have to process the
|
50
|
-
.\" output yourself in some meaningful fashion.
|
51
|
-
.ie \nF \{\
|
52
|
-
. de IX
|
53
|
-
. tm Index:\\$1\t\\n%\t"\\$2"
|
54
|
-
..
|
55
|
-
. nr % 0
|
56
|
-
. rr F
|
57
|
-
.\}
|
58
|
-
.el \{\
|
59
|
-
. de IX
|
60
|
-
..
|
61
|
-
.\}
|
62
|
-
.\"
|
63
|
-
.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
|
64
|
-
.\" Fear. Run. Save yourself. No user-serviceable parts.
|
65
|
-
. \" fudge factors for nroff and troff
|
66
|
-
.if n \{\
|
67
|
-
. ds #H 0
|
68
|
-
. ds #V .8m
|
69
|
-
. ds #F .3m
|
70
|
-
. ds #[ \f1
|
71
|
-
. ds #] \fP
|
72
|
-
.\}
|
73
|
-
.if t \{\
|
74
|
-
. ds #H ((1u-(\\\\n(.fu%2u))*.13m)
|
75
|
-
. ds #V .6m
|
76
|
-
. ds #F 0
|
77
|
-
. ds #[ \&
|
78
|
-
. ds #] \&
|
79
|
-
.\}
|
80
|
-
. \" simple accents for nroff and troff
|
81
|
-
.if n \{\
|
82
|
-
. ds ' \&
|
83
|
-
. ds ` \&
|
84
|
-
. ds ^ \&
|
85
|
-
. ds , \&
|
86
|
-
. ds ~ ~
|
87
|
-
. ds /
|
88
|
-
.\}
|
89
|
-
.if t \{\
|
90
|
-
. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
|
91
|
-
. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
|
92
|
-
. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
|
93
|
-
. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
|
94
|
-
. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
|
95
|
-
. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
|
96
|
-
.\}
|
97
|
-
. \" troff and (daisy-wheel) nroff accents
|
98
|
-
.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
|
99
|
-
.ds 8 \h'\*(#H'\(*b\h'-\*(#H'
|
100
|
-
.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
|
101
|
-
.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
|
102
|
-
.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
|
103
|
-
.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
|
104
|
-
.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
|
105
|
-
.ds ae a\h'-(\w'a'u*4/10)'e
|
106
|
-
.ds Ae A\h'-(\w'A'u*4/10)'E
|
107
|
-
. \" corrections for vroff
|
108
|
-
.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
|
109
|
-
.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
|
110
|
-
. \" for low resolution devices (crt and lpr)
|
111
|
-
.if \n(.H>23 .if \n(.V>19 \
|
112
|
-
\{\
|
113
|
-
. ds : e
|
114
|
-
. ds 8 ss
|
115
|
-
. ds o a
|
116
|
-
. ds d- d\h'-1'\(ga
|
117
|
-
. ds D- D\h'-1'\(hy
|
118
|
-
. ds th \o'bp'
|
119
|
-
. ds Th \o'LP'
|
120
|
-
. ds ae ae
|
121
|
-
. ds Ae AE
|
122
|
-
.\}
|
123
|
-
.rm #[ #] #H #V #F C
|
124
|
-
.\" ========================================================================
|
125
|
-
.\"
|
126
|
-
.IX Title "NGINX-UPGRADE 8"
|
127
|
-
.TH NGINX-UPGRADE 8 "2012-10-28" " " " "
|
128
|
-
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
|
129
|
-
.\" way too many mistakes in technical documents.
|
130
|
-
.if n .ad l
|
131
|
-
.nh
|
132
|
-
.SH "NAME"
|
133
|
-
nginx\-upgrade \- tool to upgrade nginx without any downtime
|
134
|
-
.SH "SYNOPSIS"
|
135
|
-
.IX Header "SYNOPSIS"
|
136
|
-
\&\fInginx-upgrade\fR
|
137
|
-
.SH "DESCRIPTION"
|
138
|
-
.IX Header "DESCRIPTION"
|
139
|
-
This downstream shell script updates nginx without any downtime. After
|
140
|
-
upgrading nginx via the package manager, running this script will create
|
141
|
-
a new nginx master. This master takes over all new requests. The old
|
142
|
-
masters and workers are then gracefully shutdown without breaking any
|
143
|
-
existing connections.
|
144
|
-
.PP
|
145
|
-
For further information, see: <http://nginx.org/en/docs/control.html>
|
146
|
-
.SH "BUGS"
|
147
|
-
.IX Header "BUGS"
|
148
|
-
If you find any bugs, please send an email to the author.
|
149
|
-
.SH "AUTHOR"
|
150
|
-
.IX Header "AUTHOR"
|
151
|
-
Jamie Nguyen <jamielinux@fedoraproject.org>
|
@@ -1,131 +0,0 @@
|
|
1
|
-
# For more information on configuration, see:
|
2
|
-
# * Official English Documentation: http://nginx.org/en/docs/
|
3
|
-
# * Official Russian Documentation: http://nginx.org/ru/docs/
|
4
|
-
|
5
|
-
user nginx;
|
6
|
-
worker_processes 1;
|
7
|
-
|
8
|
-
error_log /var/log/nginx/error.log;
|
9
|
-
#error_log /var/log/nginx/error.log notice;
|
10
|
-
#error_log /var/log/nginx/error.log info;
|
11
|
-
|
12
|
-
pid /var/run/nginx.pid;
|
13
|
-
|
14
|
-
|
15
|
-
events {
|
16
|
-
worker_connections 1024;
|
17
|
-
}
|
18
|
-
|
19
|
-
|
20
|
-
http {
|
21
|
-
include /etc/nginx/mime.types;
|
22
|
-
default_type application/octet-stream;
|
23
|
-
|
24
|
-
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
25
|
-
'$status $body_bytes_sent "$http_referer" '
|
26
|
-
'"$http_user_agent" "$http_x_forwarded_for"';
|
27
|
-
|
28
|
-
access_log /var/log/nginx/access.log main;
|
29
|
-
|
30
|
-
sendfile on;
|
31
|
-
#tcp_nopush on;
|
32
|
-
|
33
|
-
#keepalive_timeout 0;
|
34
|
-
keepalive_timeout 65;
|
35
|
-
|
36
|
-
#gzip on;
|
37
|
-
|
38
|
-
# Load modular configuration files from the /etc/nginx/conf.d directory.
|
39
|
-
# See http://nginx.org/en/docs/ngx_core_module.html#include
|
40
|
-
# for more information.
|
41
|
-
include /etc/nginx/conf.d/*.conf;
|
42
|
-
|
43
|
-
server {
|
44
|
-
listen 80;
|
45
|
-
server_name localhost;
|
46
|
-
|
47
|
-
#charset koi8-r;
|
48
|
-
|
49
|
-
#access_log /var/log/nginx/host.access.log main;
|
50
|
-
|
51
|
-
location / {
|
52
|
-
root /usr/share/nginx/html;
|
53
|
-
index index.html index.htm;
|
54
|
-
}
|
55
|
-
|
56
|
-
# redirect server error pages to the static page /40x.html
|
57
|
-
#
|
58
|
-
error_page 404 /404.html;
|
59
|
-
location = /40x.html {
|
60
|
-
root /usr/share/nginx/html;
|
61
|
-
}
|
62
|
-
|
63
|
-
# redirect server error pages to the static page /50x.html
|
64
|
-
#
|
65
|
-
error_page 500 502 503 504 /50x.html;
|
66
|
-
location = /50x.html {
|
67
|
-
root /usr/share/nginx/html;
|
68
|
-
}
|
69
|
-
|
70
|
-
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
|
71
|
-
#
|
72
|
-
#location ~ \.php$ {
|
73
|
-
# proxy_pass http://127.0.0.1;
|
74
|
-
#}
|
75
|
-
|
76
|
-
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
|
77
|
-
#
|
78
|
-
#location ~ \.php$ {
|
79
|
-
# root html;
|
80
|
-
# fastcgi_pass 127.0.0.1:9000;
|
81
|
-
# fastcgi_index index.php;
|
82
|
-
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
|
83
|
-
# include fastcgi_params;
|
84
|
-
#}
|
85
|
-
|
86
|
-
# deny access to .htaccess files, if Apache's document root
|
87
|
-
# concurs with nginx's one
|
88
|
-
#
|
89
|
-
#location ~ /\.ht {
|
90
|
-
# deny all;
|
91
|
-
#}
|
92
|
-
}
|
93
|
-
|
94
|
-
|
95
|
-
# another virtual host using mix of IP-, name-, and port-based configuration
|
96
|
-
#
|
97
|
-
#server {
|
98
|
-
# listen 8000;
|
99
|
-
# listen somename:8080;
|
100
|
-
# server_name somename alias another.alias;
|
101
|
-
|
102
|
-
# location / {
|
103
|
-
# root html;
|
104
|
-
# index index.html index.htm;
|
105
|
-
# }
|
106
|
-
#}
|
107
|
-
|
108
|
-
|
109
|
-
# HTTPS server
|
110
|
-
#
|
111
|
-
#server {
|
112
|
-
# listen 443;
|
113
|
-
# server_name localhost;
|
114
|
-
|
115
|
-
# ssl on;
|
116
|
-
# ssl_certificate cert.pem;
|
117
|
-
# ssl_certificate_key cert.key;
|
118
|
-
|
119
|
-
# ssl_session_timeout 5m;
|
120
|
-
|
121
|
-
# ssl_protocols SSLv2 SSLv3 TLSv1;
|
122
|
-
# ssl_ciphers HIGH:!aNULL:!MD5;
|
123
|
-
# ssl_prefer_server_ciphers on;
|
124
|
-
|
125
|
-
# location / {
|
126
|
-
# root html;
|
127
|
-
# index index.html index.htm;
|
128
|
-
# }
|
129
|
-
#}
|
130
|
-
|
131
|
-
}
|