passenger 5.1.4 → 5.1.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 +4 -4
- data/.editorconfig +9 -0
- data/CHANGELOG +9 -0
- data/build/cxx_tests.rb +11 -1
- data/build/documentation.rb +0 -32
- data/build/support/cxx_dependency_map.rb +602 -2
- data/build/test_basics.rb +3 -3
- data/dev/boost-patches/0001-Patch-boost-thread-so-that-oxt-thread-can-use-it.patch +48 -0
- data/dev/boost-patches/0002-Make-boost-thread_interrupted-derive-from-oxt-tracab.patch +33 -0
- data/dev/boost-patches/0003-Disable-a-Clang-pragma-to-prevent-warnings-on-OS-X.patch +25 -0
- data/dev/ci/README.md +121 -0
- data/dev/ci/lib/functions.sh +129 -0
- data/dev/ci/lib/set-container-envvars.sh +46 -0
- data/dev/ci/lib/setup-container.sh +43 -0
- data/dev/ci/run-tests-natively +24 -0
- data/dev/ci/run-tests-with-docker +42 -0
- data/dev/ci/scripts/debug-console-wrapper.sh +27 -0
- data/dev/ci/scripts/docker-entrypoint-stage2.sh +17 -0
- data/dev/ci/scripts/docker-entrypoint.sh +17 -0
- data/dev/ci/scripts/inituidgid +17 -0
- data/dev/ci/scripts/run-tests-natively-stage2.sh +17 -0
- data/dev/ci/scripts/setup-host-natively.sh +11 -0
- data/dev/ci/setup-host +50 -0
- data/dev/ci/tests/apache2/run +6 -0
- data/dev/ci/tests/apache2/setup +4 -0
- data/dev/ci/tests/cxx/run +9 -0
- data/dev/ci/tests/cxx/setup +4 -0
- data/dev/ci/tests/nginx-dynamic/run +20 -0
- data/dev/ci/tests/nginx-dynamic/setup +4 -0
- data/dev/ci/tests/nginx/run +5 -0
- data/dev/ci/tests/nginx/setup +4 -0
- data/dev/ci/tests/nodejs/run +4 -0
- data/dev/ci/tests/nodejs/setup +4 -0
- data/dev/ci/tests/ruby/run +4 -0
- data/dev/ci/tests/ruby/setup +4 -0
- data/dev/ci/tests/source-packaging/run +4 -0
- data/dev/ci/tests/source-packaging/setup +4 -0
- data/dev/ci/tests/standalone/run +4 -0
- data/dev/ci/tests/standalone/setup +4 -0
- data/dev/copy_boost_headers +8 -2
- data/src/agent/Core/ApiServer.h +11 -5
- data/src/agent/Core/Controller.h +12 -46
- data/src/agent/Core/Controller/CheckoutSession.cpp +1 -1
- data/src/agent/Core/Controller/Config.h +369 -0
- data/src/agent/Core/Controller/ForwardResponse.cpp +4 -4
- data/src/agent/Core/Controller/Hooks.cpp +15 -3
- data/src/agent/Core/Controller/Implementation.cpp +1 -1
- data/src/agent/Core/Controller/InitRequest.cpp +28 -39
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +25 -60
- data/src/agent/Core/Controller/InternalUtils.cpp +0 -16
- data/src/agent/Core/Controller/Miscellaneous.cpp +0 -17
- data/src/agent/Core/Controller/Request.h +2 -0
- data/src/agent/Core/Controller/SendRequest.cpp +4 -4
- data/src/agent/Core/Controller/{StateInspectionAndConfiguration.cpp → StateInspection.cpp} +0 -22
- data/src/agent/Core/Controller/TurboCaching.h +11 -10
- data/src/agent/Core/CoreMain.cpp +16 -6
- data/src/agent/Core/ResponseCache.h +3 -3
- data/src/agent/Core/SpawningKit/SmartSpawner.h +9 -3
- data/src/agent/Core/SpawningKit/Spawner.h +7 -3
- data/src/agent/UstRouter/ApiServer.h +3 -2
- data/src/agent/UstRouter/Controller.h +66 -32
- data/src/agent/UstRouter/UstRouterMain.cpp +10 -2
- data/src/agent/Watchdog/ApiServer.h +3 -2
- data/src/agent/Watchdog/WatchdogMain.cpp +3 -1
- data/src/apache2_module/ConfigurationCommands.cpp +1 -1
- data/src/cxx_supportlib/ConfigKit/Common.h +125 -0
- data/src/cxx_supportlib/ConfigKit/ConfigKit.h +34 -0
- data/src/cxx_supportlib/ConfigKit/README.md +895 -0
- data/src/cxx_supportlib/ConfigKit/Schema.h +331 -0
- data/src/cxx_supportlib/ConfigKit/Store.h +385 -0
- data/src/cxx_supportlib/ConfigKit/TableTranslator.h +185 -0
- data/src/cxx_supportlib/ConfigKit/Utils.h +141 -0
- data/src/cxx_supportlib/ConfigKit/VariantMapUtils.h +81 -0
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/Crypto.cpp +2 -2
- data/src/cxx_supportlib/Logging.h +0 -35
- data/src/cxx_supportlib/ServerKit/HttpServer.h +35 -16
- data/src/cxx_supportlib/ServerKit/Server.h +65 -25
- data/src/cxx_supportlib/oxt/macros.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/replace.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/array.hpp +53 -42
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_template.hpp +11 -5
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_x86.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_msvc_x86.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/interlocked.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_emulated.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_alpha.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_atomic.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sparc.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sync.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86_dcas.hpp +28 -17
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_linux_arm.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_arm.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_x86.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/bind/arg.hpp +10 -3
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +90 -18
- data/src/cxx_supportlib/vendor-modified/boost/cerrno.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +35 -6
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/comeau.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/compaq_cxx.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/greenhills.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +29 -7
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/kai.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pgi.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sgi_mipspro.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +44 -16
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/cygwin.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/linux.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/select_compiler_config.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +42 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcomo.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +40 -7
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +39 -6
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/modena.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/msl.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/roguewave.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/sgi.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/stlport.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/vacpp.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/suffix.hpp +33 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +0 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +34 -27
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +62 -26
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +39 -5
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +49 -32
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +175 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +223 -98
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_sorted.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +88 -41
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mpl.hpp +7 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mutex.hpp +4 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +45 -18
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +205 -26
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +290 -181
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_init.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/variadic_templates_tools.hpp +24 -19
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +320 -46
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +91 -18
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +23 -19
- data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +491 -120
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +0 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +399 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/deque.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_map.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_set.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/list.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/map.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/set.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/slist.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/small_vector.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/stable_vector.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/string.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/vector.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +101 -20
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +19 -14
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +117 -59
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +33 -28
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +414 -70
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/uses_allocator_fwd.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +134 -117
- data/src/cxx_supportlib/vendor-modified/boost/core/addressof.hpp +202 -99
- data/src/cxx_supportlib/vendor-modified/boost/core/demangle.hpp +8 -10
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +217 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/scoped_enum.hpp +29 -27
- data/src/cxx_supportlib/vendor-modified/boost/current_function.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/c_time.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/date_time/constrained_value.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration_types.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_facet.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_names_put.hpp +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_calendar.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day_of_year.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration_types.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_facet.hpp +27 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_month.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_serialize.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_weekday.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_year.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_date_time.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/posix_time_zone.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/date_duration_operators.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_config.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_duration.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/ptime.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_duration.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_base.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/year_month_day.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/detail/iterator.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/lcast_precision.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/workaround.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/error_info_impl.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/shared_ptr.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +25 -3
- data/src/cxx_supportlib/vendor-modified/boost/exception/get_error_info.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +114 -1
- data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +116 -142
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +57 -69
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash/detail/hash_float.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash/extensions.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash/hash.hpp +27 -13
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +99 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +35 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +37 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +95 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +209 -72
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +86 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/algo_type.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +58 -45
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +27 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +27 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/equal_to_value.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +9 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/has_member_function_callable_with.hpp +83 -57
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +30 -30
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iiterator.hpp +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +70 -44
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +22 -21
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +29 -28
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +33 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/size_holder.hpp +19 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +21 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/to_raw_pointer.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/transform_iterator.hpp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_value_compare.hpp +103 -29
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +295 -211
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +20 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +22 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +36 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +43 -13
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +95 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +96 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +102 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +48 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +20 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +95 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +36 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +167 -23
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +100 -46
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +37 -27
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +30 -14
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +35 -36
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +6 -28
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +20 -5
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once.cpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +11 -7
- data/src/cxx_supportlib/vendor-modified/boost/math/policies/policy.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/math_fwd.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/config.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +40 -7
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +2437 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/basic_op.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/insertion_sort.hpp +127 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +637 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +139 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +155 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algorithm.hpp +1 -116
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/move/default_delete.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/destruct_n.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/fwd_macros.hpp +227 -32
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +30 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils_core.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/move_helpers.hpp +84 -80
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/placement_new.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +14 -20
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/unique_ptr_meta_utils.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +32 -33
- data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +49 -49
- data/src/cxx_supportlib/vendor-modified/boost/move/utility.hpp +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +17 -16
- data/src/cxx_supportlib/vendor-modified/boost/mpl/print.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/none.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +197 -255
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +1059 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +116 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_factory_support.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +253 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_relops.hpp +196 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_swap.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +372 -554
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional_fwd.hpp +12 -1
- data/src/cxx_supportlib/vendor-modified/boost/pool/detail/mutex.hpp +15 -7
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool_alloc.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/intel.h +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/visualc.h +15 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd.h +16 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86.h +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd/versions.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/cygwin.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/version_number.h +20 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/cat.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/config.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/binary_transform.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/to_list_msvc.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/to_list.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/range/const_iterator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/range/size_type.hpp +0 -5
- data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/regex/config.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/regex/pending/unicode_iterator.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_creator.hpp +102 -87
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +45 -21
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cpp_regex_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/fileiter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/instances.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_flags.hpp +14 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/mem_block_cache.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_common.hpp +5 -14
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +116 -13
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_recursive.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_format.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits_defaults.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_workaround.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/w32_regex_traits.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +1004 -159
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/bad_weak_ptr.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +4 -58
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_clang.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +0 -8
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_noexcept.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +28 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ref_counter.hpp +187 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +52 -144
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +120 -450
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +70 -8
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/barrier.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/completion_latch.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_views.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_timed_queue.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/config.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp +11 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/exceptions.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/generic_executor_ref.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/loop_executor.hpp +22 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +163 -55
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/launch.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_all.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/lock_types.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/thread/locks.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable.hpp +6 -7
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable_fwd.hpp +17 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/shared_mutex.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/timespec.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +23 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/synchronized_value.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_functors.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_guard.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/user_scheduler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +265 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +272 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +300 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_reference.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/aligned_storage.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/common_type.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/common_arithmetic_type.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/mp_defer.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/extent.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_assign.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_constructor.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_destructor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_assign.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_copy.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_destructor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_assign.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_constructor.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_abstract.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_assignable.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_const.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_default_constructible.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_destructible.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_assignable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_constructible.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_pod.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_rvalue_reference.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_virtual_base_of.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_volatile.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/make_void.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/rank.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_all_extents.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_const.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_cv.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_extent.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_volatile.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_with_alignment.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +40 -6
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +4986 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +105 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +1814 -1255
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +41 -45
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +1498 -1161
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +40 -44
- data/src/cxx_supportlib/vendor-modified/boost/utility.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/utility/compare_pointees.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +39 -22
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +690 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view_fwd.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/helper-scripts/crash-watch.rb +3 -0
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +2 -12
- metadata +77 -38
- data/dev/ci/inituidgid +0 -24
- data/dev/ci/run_jenkins.sh +0 -70
- data/dev/ci/run_travis.sh +0 -314
- data/doc/Design and Architecture.html +0 -2421
- data/doc/Design and Architecture.txt +0 -511
- data/doc/Security of user switching support.html +0 -1833
- data/doc/Users guide Apache.html +0 -3101
- data/doc/Users guide Apache.idmap.txt +0 -451
- data/doc/Users guide Apache.txt +0 -534
- data/doc/Users guide Nginx.html +0 -3026
- data/doc/Users guide Nginx.idmap.txt +0 -431
- data/doc/Users guide Nginx.txt +0 -451
- data/doc/Users guide Standalone.html +0 -2092
- data/doc/Users guide Standalone.idmap.txt +0 -137
- data/doc/Users guide Standalone.txt +0 -81
- data/doc/Users guide.html +0 -1606
- data/doc/Users guide.txt +0 -8
- data/src/cxx_supportlib/vendor-modified/boost/align/align.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/address.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/align.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/align_cxx11.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/hash_table.hpp +0 -383
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_allocator.hpp +0 -318
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_count_impl.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_traits.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_utility.hpp +0 -214
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_if_array.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/allocate.hpp +0 -1128
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/buckets.hpp +0 -928
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/equivalent.hpp +0 -686
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/extract_key.hpp +0 -188
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/table.hpp +0 -873
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/unique.hpp +0 -628
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/util.hpp +0 -266
@@ -1,431 +0,0 @@
|
|
1
|
-
###### Autogenerated by Mizuho, DO NOT EDIT ######
|
2
|
-
# This file maps section names to IDs so that the commenting system knows which
|
3
|
-
# comments belong to which section. Section names may be changed at will but
|
4
|
-
# IDs always stay the same, allowing one to retain old comments even if you
|
5
|
-
# rename a section.
|
6
|
-
#
|
7
|
-
# This file is autogenerated but is not a cache; you MUST NOT DELETE this
|
8
|
-
# file and you must check it into your version control system. If you lose
|
9
|
-
# this file you may lose the ability to identity old comments.
|
10
|
-
#
|
11
|
-
# Entries marked with "fuzzy" indicate that the section title has changed
|
12
|
-
# and that Mizuho has found an ID which appears to be associated with that
|
13
|
-
# section. You should check whether it is correct, and if not, fix it.
|
14
|
-
|
15
|
-
1. Support information => support-information-nl5gdn
|
16
|
-
|
17
|
-
1.1. Supported operating systems and languages => supported-operating-systems-a5n2x4
|
18
|
-
|
19
|
-
1.2. Where to get support => where-to-get-support-2s9na5
|
20
|
-
|
21
|
-
2. Installation => installing-phusion-passenger-hn03ac
|
22
|
-
|
23
|
-
2.1. Synopsis => synopsis-1uu3sqp
|
24
|
-
|
25
|
-
2.2. Installing or upgrading on Mac OS X with Homebrew => installing-or-upgrading-on-mac-os-x-with-homebrew-13ovvy9
|
26
|
-
|
27
|
-
2.3. Installing or upgrading on Debian or Ubuntu => installing-or-upgrading-on-ubuntu-fw5fvp
|
28
|
-
|
29
|
-
2.3.1. Adding our APT repository => adding-our-apt-repository-p60cki
|
30
|
-
|
31
|
-
2.3.2. Installing packages => installing-packages-j9glez
|
32
|
-
|
33
|
-
2.3.3. Inserting passenger_root into nginx.conf => inserting-passenger-root-into-nginx-conf--1pmj19o
|
34
|
-
|
35
|
-
2.4. Installing or upgrading on Red Hat or CentOS => installing-or-upgrading-on-red-hat-fedora-centos-or-scientificlinux-1uus5a1
|
36
|
-
|
37
|
-
2.4.1. Adding our YUM repository => adding-our-yum-repository-2i9z9o
|
38
|
-
|
39
|
-
2.4.2. Installing packages => installing-packages-1actlet
|
40
|
-
|
41
|
-
2.5. Installing or upgrading on Heroku => installing-or-upgrading-on-heroku-jh07kr
|
42
|
-
|
43
|
-
2.6. Generic installation, upgrade and downgrade method: via RubyGems => generic-installation-upgrade-and-downgrade-method-via-rubygems-76uol7
|
44
|
-
|
45
|
-
2.7. Generic installation, upgrade and downgrade method: via tarball => generic-installation-upgrade-and-downgrade-method-via-tarball-2gkx43
|
46
|
-
|
47
|
-
2.8. Upgrading from open source to Enterprise => upgrading-from-open-source-to-enterprise-1a58c2b
|
48
|
-
|
49
|
-
2.9. Cryptographic verification of installation files => cryptographic-verification-of-installation-files-2goray
|
50
|
-
|
51
|
-
2.9.1. Synopsis => synopsis-4fv6zw
|
52
|
-
|
53
|
-
2.9.2. Importing the Phusion Software Signing key => importing-the-phusion-software-signing-key-1qfpaj4
|
54
|
-
|
55
|
-
2.9.3. Verifying the Phusion Software Signing key => verifying-the-phusion-software-signing-key-i7f1vj
|
56
|
-
|
57
|
-
2.9.4. Verifying the gem and tarball => verifying-the-gem-and-tarball-dr9466
|
58
|
-
|
59
|
-
2.9.5. Verifying Git signatures => verifying-git-signatures-dyo4fk
|
60
|
-
|
61
|
-
2.9.6. Verifying Debian packages => verifying-deb-and-rpm-packages-1ed36d5
|
62
|
-
|
63
|
-
2.9.7. Verifying RPM packages => verifying-rpm-packages-1wwblzx
|
64
|
-
|
65
|
-
2.9.8. Revocation => revocation-xwvhea
|
66
|
-
|
67
|
-
2.10. Non-interactive, automatic, headless installs or upgrades => non-interactive-automatic-headless-installs-or-upgrades-834ymv
|
68
|
-
|
69
|
-
2.11. Customizing the compilation process => customizing-the-compilation-process-u4cdcf
|
70
|
-
|
71
|
-
2.11.1. Setting the compiler => setting-the-compiler-1l6dpe1
|
72
|
-
|
73
|
-
2.11.2. Adding additional compiler or linker flags => adding-additional-compiler-or-linker-flags-1jehjon
|
74
|
-
|
75
|
-
2.11.3. Forcing location of command line tools and dependencies => forcing-location-of-certain-command-line-tools-1j93cki
|
76
|
-
|
77
|
-
2.12. Installing as a normal Nginx module without using the installer => installing-as-a-normal-nginx-module-without-using-the-installer-1kkpes5
|
78
|
-
|
79
|
-
2.13. Creating an Nginx init script => creating-an-nginx-init-script-1kd8zg5
|
80
|
-
|
81
|
-
2.14. Disabling without uninstalling => disabling-without-uninstalling-1t5tqan
|
82
|
-
|
83
|
-
2.15. Uninstalling => uninstalling-phusion-passenger-wuycvb
|
84
|
-
|
85
|
-
2.16. Moving to a different directory => moving-to-a-different-directory-gif3wo
|
86
|
-
|
87
|
-
3. Deploying a Rack-based Ruby application => deploying-a-rack-based-ruby-application-including-rails-3--12benx3
|
88
|
-
|
89
|
-
3.1. Tutorial/example: writing and deploying a Hello World Rack application => tutorial-example-writing-and-deploying-a-hello-world-rack-application-1wstx99
|
90
|
-
|
91
|
-
3.2. Deploying to a virtual host’s root => deploying-to-a-virtual-host-s-root-1mh24z5
|
92
|
-
|
93
|
-
3.3. Deploying to a sub URI => deploying-to-a-sub-uri-1il2qj7
|
94
|
-
|
95
|
-
3.4. Redeploying (restarting the Rack application) => redeploying-restarting-the-rack-application--xnbfam
|
96
|
-
|
97
|
-
3.5. Rackup specifications for various web frameworks => rackup-specifications-for-various-web-frameworks-1a2cs41
|
98
|
-
|
99
|
-
4. Deploying a WSGI (Python) application => deploying-a-wsgi-python-application-1or2efo
|
100
|
-
|
101
|
-
4.1. Tutorial/example: writing and deploying a Hello World WSGI application => tutorial-example-writing-and-deploying-a-hello-world-wsgi-application-k5ron2
|
102
|
-
|
103
|
-
4.2. Deploying to a virtual host’s root => deploying-to-a-virtual-host-s-root-f02erj
|
104
|
-
|
105
|
-
4.3. Deploying to a sub URI => deploying-to-a-sub-uri-37q0ou
|
106
|
-
|
107
|
-
4.4. Redeploying (restarting the WSGI application) => redeploying-restarting-the-wsgi-application--10zdh2k
|
108
|
-
|
109
|
-
4.5. Sample passenger_wsgi.py for Django => sample-passenger-wsgi-py-for-django-1cvndls
|
110
|
-
|
111
|
-
5. Deploying a Node.js application => deploying-a-node-js-application-15wbczd
|
112
|
-
|
113
|
-
6. Deploying a Meteor application => deploying-a-meteor-application-1b51wl9
|
114
|
-
|
115
|
-
7. Configuring Phusion Passenger => configuring-phusion-passenger-1g1svey
|
116
|
-
|
117
|
-
7.1. passenger_root <directory> => passenger-root-directory--bqvhhz
|
118
|
-
|
119
|
-
7.2. Deployment options => deployment-options-1a1vxsp
|
120
|
-
|
121
|
-
7.2.1. passenger_enabled <on|off> => passenger-enabled-on-off--1rpb2t7
|
122
|
-
|
123
|
-
7.2.2. passenger_base_uri <uri> => passenger-base-uri-uri--1xtuo50
|
124
|
-
|
125
|
-
7.2.3. passenger_document_root <path> => passenger-document-root-path--1pge8kd
|
126
|
-
|
127
|
-
7.3. Application loading options => application-loading-options-f3skts
|
128
|
-
|
129
|
-
7.3.1. passenger_ruby <filename> => passenger-ruby-filename--1gnok5k
|
130
|
-
|
131
|
-
7.3.2. passenger_python <filename> => passenger-python-filename--14p554
|
132
|
-
|
133
|
-
7.3.3. passenger_nodejs <filename> => passenger-nodejs-filename--16hzjsv
|
134
|
-
|
135
|
-
7.3.4. passenger_meteor_app_settings <filename> => passenger-meteor-app-settings-filename--1toqnaz
|
136
|
-
|
137
|
-
7.3.5. passenger_app_env <string> => passenger-app-env-string--qjeimp
|
138
|
-
|
139
|
-
7.3.6. rails_env <string> => rails-env-string--jlh7v9
|
140
|
-
|
141
|
-
7.3.7. rack_env <string> => rack-env-string--tqmrt0
|
142
|
-
|
143
|
-
7.3.8. passenger_app_root <path/to/root> => passenger-app-root-path-to-root--1dbudc6
|
144
|
-
|
145
|
-
7.3.9. passenger_app_group_name <name> => passenger-app-group-name-name--11jrx8u
|
146
|
-
|
147
|
-
7.3.10. passenger_app_type <name> => passenger-app-type-name--g9zccv
|
148
|
-
|
149
|
-
7.3.11. passenger_startup_file <filename> => passenger-startup-file-filename--y4gy1m
|
150
|
-
|
151
|
-
7.3.12. passenger_spawn_method <string> => passenger-spawn-method-string--1sc6njl
|
152
|
-
|
153
|
-
7.3.13. passenger_env_var <name> <value> => passenger-env-var-name-value--y8e7wh
|
154
|
-
|
155
|
-
7.3.14. passenger_load_shell_envvars <on|off> => passenger-load-shell-envvars-on-off--fw5u4l
|
156
|
-
|
157
|
-
7.3.15. passenger_rolling_restarts <on|off> => passenger-rolling-restarts
|
158
|
-
|
159
|
-
7.3.16. passenger_resist_deployment_errors <on|off> => passenger-resist-deployment-errors-on-off--k9yf1
|
160
|
-
|
161
|
-
7.4. Security options => security-options-1bv93g4
|
162
|
-
|
163
|
-
7.4.1. passenger_user_switching <on|off> => passenger-user-switching-on-off--1p37u3l
|
164
|
-
|
165
|
-
7.4.2. passenger_user <username> => passenger-user-username--b06ur7
|
166
|
-
|
167
|
-
7.4.3. passenger_group <group name> => passenger-user-group-name--1fco4j7
|
168
|
-
|
169
|
-
7.4.4. passenger_default_user <username> => passenger-default-user-username--1h6cdmf
|
170
|
-
|
171
|
-
7.4.5. Passenger_default_group <group name> => passenger-default-group-group-name--1qxn2qa
|
172
|
-
|
173
|
-
7.4.6. passenger_show_version_in_header <on|off> => passenger-show-version-in-header-on-off--2h49av
|
174
|
-
|
175
|
-
7.4.7. passenger_friendly_error_pages <on|off> => passenger-friendly-error-pages-on-off--1ti1a0e
|
176
|
-
|
177
|
-
7.5. Resource control and optimization options => resource-control-and-optimization-options-xd7evs
|
178
|
-
|
179
|
-
7.5.1. passenger_max_pool_size <integer> => passenger-max-pool-size-integer--3jzefs
|
180
|
-
|
181
|
-
7.5.2. passenger_min_instances <integer> => passenger-min-instances-integer--uclykt
|
182
|
-
|
183
|
-
7.5.3. passenger_max_instances <integer> => passenger-max-instances
|
184
|
-
|
185
|
-
7.5.4. passenger_max_instances_per_app <integer> => passenger-max-instances-per-app-integer--1xhbbne
|
186
|
-
|
187
|
-
7.5.5. passenger_pool_idle_time <integer> => passenger-pool-idle-time-integer--xcw65o
|
188
|
-
|
189
|
-
7.5.6. passenger_max_preloader_idle_time <integer> => rails-app-spawner-idle-time-integer--1xjqe4b
|
190
|
-
|
191
|
-
7.5.7. passenger_start_timeout <seconds> => passenger-start-timeout-seconds--8xn504
|
192
|
-
|
193
|
-
7.5.8. passenger_concurrency_model <process|thread> => passenger-concurrency-model-process-thread--brcvkk
|
194
|
-
|
195
|
-
7.5.9. passenger_thread_count <number> => passenger-thread-count-number--1kd6ffy
|
196
|
-
|
197
|
-
7.5.10. passenger_max_requests <integer> => passenger-max-requests-integer--sgzint
|
198
|
-
|
199
|
-
7.5.11. passenger_max_request_time <seconds> => passenger-max-request-time-seconds--1htog2g
|
200
|
-
|
201
|
-
7.5.12. passenger_memory_limit <integer> => passenger-memory-limit-integer--1ry7dwx
|
202
|
-
|
203
|
-
7.5.13. passenger_stat_throttle_rate <integer> => passenger-stat-throttle-rate-integer--xzjbry
|
204
|
-
|
205
|
-
7.5.14. passenger_pre_start <url> => passenger-pre-start-url--npldeb
|
206
|
-
|
207
|
-
7.6. Connection handling options => connection-handling-options-8jgq90
|
208
|
-
|
209
|
-
7.6.1. passenger_set_header <HTTP header name> <value> => passenger-set-cgi-param-cgi-environment-name-value--rx9gc0
|
210
|
-
|
211
|
-
7.6.2. passenger_max_request_queue_size <number> => passenger-max-request-queue-size-number--i0te1b
|
212
|
-
|
213
|
-
7.6.3. passenger_request_queue_overflow_status_code <code> => passenger-request-queue-overflow-status-code-code--1wcwuxl
|
214
|
-
|
215
|
-
7.6.4. passenger_sticky_sessions <on|off> => passenger-sticky-sessions-on-off--lwvbxs
|
216
|
-
|
217
|
-
7.6.5. passenger_sticky_sessions_cookie_name => passenger-sticky-sessions-cookie-name-8hrox9
|
218
|
-
|
219
|
-
7.6.6. passenger_ignore_client_abort <on|off> => passenger-ignore-client-abort
|
220
|
-
|
221
|
-
7.6.7. passenger_intercept_errors <on|off> => passenger-intercept-errors-1uvcb9x
|
222
|
-
|
223
|
-
7.6.8. passenger_pass_header <header name> => passenger-pass-header-header-name--1cg31je
|
224
|
-
|
225
|
-
7.6.9. passenger_ignore_headers <header names…> => passenger-ignore-headers-header-names--12zg5oh
|
226
|
-
|
227
|
-
7.6.10. passenger_headers_hash_bucket_size <size> => passenger-headers-hash-bucket-size-size--zx1rwf
|
228
|
-
|
229
|
-
7.6.11. passenger_headers_hash_max_size <size> => passenger-headers-hash-max-size-size--1vl0i9u
|
230
|
-
|
231
|
-
7.6.12. passenger_buffer_response <on|off> => passenger-buffer-response
|
232
|
-
|
233
|
-
7.6.13. passenger_response_buffer_high_watermark <bytes> => passenger-response-buffer-high-watermark-bytes--ranajv
|
234
|
-
|
235
|
-
7.6.14. passenger_buffer_size => passenger-buffer-size-1jfkq87
|
236
|
-
|
237
|
-
7.6.15. passenger_buffers => passenger-busy-buffers
|
238
|
-
|
239
|
-
7.6.16. passenger_busy_buffers_size => passenger-busy-buffer-size-124sj61
|
240
|
-
|
241
|
-
7.7. Logging and debugging options => logging-and-debugging-options-14e91ni
|
242
|
-
|
243
|
-
7.7.1. passenger_log_level <integer> => passenger-log-level-integer--17snhon
|
244
|
-
|
245
|
-
7.7.2. passenger_log_file <filename> => passenger-debug-log-file-filename--21ubaj
|
246
|
-
|
247
|
-
7.7.3. PassengerFileDescriptorLogFile <filename> => passengerfiledescriptorlogfile-filename--bqbga8
|
248
|
-
|
249
|
-
7.7.4. passenger_debugger <on|off> => passenger-debugger-on-off--1wkuq85
|
250
|
-
|
251
|
-
7.8. Advanced options => advanced-options-hnuhqz
|
252
|
-
|
253
|
-
7.8.1. passenger_instance_registry_dir <directory> => passenger-instance-registry-dir-directory--1jl6zij
|
254
|
-
|
255
|
-
7.8.2. passenger_data_buffer_dir <directory> => passenger-data-buffer-dir-directory--1isg9cm
|
256
|
-
|
257
|
-
7.8.3. passenger_fly_with <socket filename> => passenger-fly-with-socket-filename--1amd1xn
|
258
|
-
|
259
|
-
7.9. Deprecated or removed options => deprecated-options-1dtzo0g
|
260
|
-
|
261
|
-
7.9.1. rails_spawn_method => rails-spawn-method-17vdnpt
|
262
|
-
|
263
|
-
7.9.2. passenger_debug_log_file => passenger-debug-log-file-1aqru34
|
264
|
-
|
265
|
-
8. Troubleshooting => troubleshooting-1pt0c76
|
266
|
-
|
267
|
-
8.1. Generic troubleshooting tips => generic-troubleshooting-tips-xhe4nu
|
268
|
-
|
269
|
-
8.2. Why does the first request take a long time? => why-does-the-first-request-take-a-long-time--1knj9fp
|
270
|
-
|
271
|
-
8.3. Upon accessing the web app, Nginx reports a "Permission denied" error => upon-accessing-the-web-app-nginx-reports-a-permission-denied-error-1wgatlk
|
272
|
-
|
273
|
-
8.4. I get "command not found" when running a Phusion Passenger command through sudo => i-get-command-not-found-when-running-a-phusion-passenger-command-through-sudo-10fzwno
|
274
|
-
|
275
|
-
8.5. The application thinks its not on SSL even though it is => the-application-thinks-its-not-on-ssl-even-though-it-is-1e2m21h
|
276
|
-
|
277
|
-
8.6. Ruby on Rails-specific troubleshooting => ruby-on-rails-specific-troubleshooting-n8u5u1
|
278
|
-
|
279
|
-
8.6.1. The "About your application’s environment" link does not work => the-about-your-application-s-environment-link-does-not-work-9p7b2g
|
280
|
-
|
281
|
-
8.6.2. The Rails application reports that it’s unable to start because of a permission error => the-rails-application-reports-that-it-s-unable-to-start-because-of-a-permission-error-58ww8s
|
282
|
-
|
283
|
-
8.6.3. The Rails application’s log file is not being written to => the-rails-application-s-log-file-is-not-being-written-to-9m2i5h
|
284
|
-
|
285
|
-
9. Analysis and system maintenance => analysis-and-system-maintenance-1nnlnj8
|
286
|
-
|
287
|
-
9.1. Inspecting memory usage => inspecting-memory-usage-1k6y8v0
|
288
|
-
|
289
|
-
9.2. Inspecting Phusion Passenger’s internal status => inspecting-phusion-passenger-s-internal-status-v36wbc
|
290
|
-
|
291
|
-
9.3. Debugging frozen applications => debugging-frozen-applications-qoctl8
|
292
|
-
|
293
|
-
9.4. Accessing individual application processes => accessing-individual-application-processes-1qe4fqk
|
294
|
-
|
295
|
-
9.5. Attaching an IRB console to an application process => attaching-an-irb-console-to-an-application-process-d36enw
|
296
|
-
|
297
|
-
10. Tips => tips-n4c22d
|
298
|
-
|
299
|
-
10.1. User Switching (security feature) => user-switching-security--zmsy9o
|
300
|
-
|
301
|
-
10.1.1. Requirements => requirements-15ozqdj
|
302
|
-
|
303
|
-
10.1.2. Effects => effects-nd2m44
|
304
|
-
|
305
|
-
10.1.3. Caveats & troubleshooting => caveats-troubleshooting-mbw582
|
306
|
-
|
307
|
-
10.1.4. Red Hat and CentOS caveats => red-hat-and-centos-caveats-ilqxyl
|
308
|
-
|
309
|
-
10.1.5. Finding out what user an application is running as => finding-out-what-user-an-application-is-running-as-1ni7zk6
|
310
|
-
|
311
|
-
10.2. Copy-on-write memory support (reducing memory consumption of Ruby applications) => reducing-memory-consumption-of-ruby-on-rails-applications-by-33--1o3z66q
|
312
|
-
|
313
|
-
10.3. Tuning for Server Sent Events and WebSockets => tuning-for-server-sent-events-and-websockets-8ec9td
|
314
|
-
|
315
|
-
10.4. Bundler support => bundler-support-19v1h43
|
316
|
-
|
317
|
-
10.4.1. Does Phusion Passenger itself need to be added to the Gemfile? => does-phusion-passenger-itself-need-to-be-added-to-the-gemfile--xn1a11
|
318
|
-
|
319
|
-
10.5. Installing multiple Ruby on Rails versions => installing-multiple-ruby-on-rails-versions-1bp1fff
|
320
|
-
|
321
|
-
10.6. Making the application restart after each request => making-the-application-restart-after-each-request-vimy48
|
322
|
-
|
323
|
-
10.7. How to fix broken images/CSS/JavaScript URIs in sub-URI deployments => how-to-fix-broken-images-css-javascript-uris-in-sub-uri-deployments-11mzwt6
|
324
|
-
|
325
|
-
10.8. Out-of-Band Work and Out-of-Band Garbage Collection => out-of-band-work-and-out-of-band-garbage-collection-v89lu2
|
326
|
-
|
327
|
-
10.9. Hooks => hooks-qrxle1
|
328
|
-
|
329
|
-
10.9.1. Example => example-1orara9
|
330
|
-
|
331
|
-
10.9.2. Environment => environment-10uhg8m
|
332
|
-
|
333
|
-
10.9.3. Blocking and concurrency => blocking-and-concurrency-g5njp1
|
334
|
-
|
335
|
-
10.9.4. Error handling => error-handling-m78oxs
|
336
|
-
|
337
|
-
10.9.5. Compatibility => compatibility-132b3ns
|
338
|
-
|
339
|
-
10.9.6. Available hooks => available-hooks-11w1prq
|
340
|
-
|
341
|
-
10.10. Flying Passenger => flying-passenger-137qg5e
|
342
|
-
|
343
|
-
10.10.1. Requirements => requirements-194ysj6
|
344
|
-
|
345
|
-
10.10.2. Basic usage => basic-usage-1qtgvwx
|
346
|
-
|
347
|
-
10.10.3. Configuring Flying Passenger => configuring-flying-passenger-n558np
|
348
|
-
|
349
|
-
10.10.4. Managing the Flying Passenger daemon => managing-the-flying-passenger-daemon-vjmzdh
|
350
|
-
|
351
|
-
10.10.5. Using Flying Passenger with MRI 1.8 or JRuby => using-flying-passenger-with-mri-1-8-or-jruby-pxho35
|
352
|
-
|
353
|
-
10.10.6. Caveats and limitations => caveats-and-limitations-15wakf
|
354
|
-
|
355
|
-
11. Under the hood => under-the-hood-8uney
|
356
|
-
|
357
|
-
11.1. Page caching support => page-caching-support-nafhf6
|
358
|
-
|
359
|
-
11.2. Phusion Passenger and its relationship with Ruby => phusion-passenger-and-its-relationship-with-ruby-1hub1pa
|
360
|
-
|
361
|
-
11.2.1. How Ruby is used => how-ruby-is-used-j7g2a4
|
362
|
-
|
363
|
-
11.2.2. When the system has multiple Ruby interpreters => when-the-system-has-multiple-ruby-interpreters-fwn3t
|
364
|
-
|
365
|
-
11.3. How Phusion Passenger detects whether a virtual host is a web application => how-phusion-passenger-detects-whether-a-virtual-host-is-a-web-application-13qbmhn
|
366
|
-
|
367
|
-
12. Appendix A: About this document => appendix-a-about-this-document-zfvixm
|
368
|
-
|
369
|
-
13. Appendix B: Terminology => appendix-b-terminology-wzv5ro
|
370
|
-
|
371
|
-
13.1. Application root => application-root-1fd6bqv
|
372
|
-
|
373
|
-
13.2. Idle process => idle-process-13byfw9
|
374
|
-
|
375
|
-
13.3. Inactive process => inactive-process-1d2h0po
|
376
|
-
|
377
|
-
14. Appendix C: Spawning methods explained => appendix-c-spawning-methods-explained-tcp8e6
|
378
|
-
|
379
|
-
14.1. The most straightforward and traditional way: direct spawning => the-most-straightforward-and-traditional-way-conservative-spawning-civ29z
|
380
|
-
|
381
|
-
14.2. The smart spawning method => the-smart-spawning-method-7nhgtj
|
382
|
-
|
383
|
-
14.2.1. How it works => how-it-works-f9umga
|
384
|
-
|
385
|
-
14.2.2. Summary of benefits => summary-of-benefits-qovyvk
|
386
|
-
|
387
|
-
14.3. Smart spawning caveat #1: unintentional file descriptor sharing => smart-spawning-gotcha-1-unintentional-file-descriptor-sharing-cebw6q
|
388
|
-
|
389
|
-
14.3.1. Example 1: Memcached connection sharing (harmful) => example-1-memcached-connection-sharing-harmful--1wfs3ad
|
390
|
-
|
391
|
-
14.3.2. Example 2: Log file sharing (not harmful) => example-2-log-file-sharing-not-harmful--ox4yfy
|
392
|
-
|
393
|
-
14.4. Smart spawning caveat #2: the need to revive threads => smart-spawning-gotcha-2-the-need-to-revive-threads-1ey176o
|
394
|
-
|
395
|
-
15. Appendix D: About environment variables => appendix-d-about-environment-variables-1t2cuff
|
396
|
-
|
397
|
-
15.1. Working with environment variables => working-with-environment-variables-1kmvq8w
|
398
|
-
|
399
|
-
15.2. The PATH environment variable => the-path-environment-variable-vlp05e
|
400
|
-
|
401
|
-
15.2.1. Adding Phusion Passenger’s administration tools to PATH => adding-phusion-passenger-s-administration-tools-to-path-1flz2tu
|
402
|
-
|
403
|
-
15.3. Making environment variables permanent => making-environment-variables-permanent-1wjyhzt
|
404
|
-
|
405
|
-
15.3.1. bash => bash-19xsxec
|
406
|
-
|
407
|
-
15.3.2. Apache => apache-9hqtyj
|
408
|
-
|
409
|
-
15.3.3. Nginx => nginx-157dpwy
|
410
|
-
|
411
|
-
15.3.4. cron => cron-1nuc9cz
|
412
|
-
|
413
|
-
15.3.5. Phusion Passenger-served apps => phusion-passenger-served-apps-uiewl5
|
414
|
-
|
415
|
-
15.4. Environment variables and sudo => environment-variables-and-sudo-10lphxn
|
416
|
-
|
417
|
-
|
418
|
-
### These sections appear to have been removed. Please check.
|
419
|
-
|
420
|
-
3.5.1. Camping => camping-16vz2yb
|
421
|
-
|
422
|
-
3.5.2. Halcyon => halcyon-1benlfl
|
423
|
-
|
424
|
-
3.5.3. Mack => mack-1ezijq6
|
425
|
-
|
426
|
-
3.5.4. Merb => merb-ddsh55
|
427
|
-
|
428
|
-
3.5.5. Ramaze => ramaze-1p2zod
|
429
|
-
|
430
|
-
3.5.6. Sinatra => sinatra-a7u9ag
|
431
|
-
|
data/doc/Users guide Nginx.txt
DELETED
@@ -1,451 +0,0 @@
|
|
1
|
-
Phusion Passenger users guide, Nginx version
|
2
|
-
============================================
|
3
|
-
|
4
|
-
image:images/phusion_banner.png[link="http://www.phusion.nl/"]
|
5
|
-
|
6
|
-
This is the old, deprecated Passenger for Nginx documentation. Please visit https://www.phusionpassenger.com/library/ for the new documentation.
|
7
|
-
|
8
|
-
|
9
|
-
== Support information
|
10
|
-
|
11
|
-
include::users_guide_snippets/support_information.txt[]
|
12
|
-
|
13
|
-
[[installation]]
|
14
|
-
== Installation
|
15
|
-
|
16
|
-
include::users_guide_snippets/installation.txt[]
|
17
|
-
|
18
|
-
|
19
|
-
[[deploying_a_rack_app]]
|
20
|
-
== Deploying a Rack-based Ruby application ==
|
21
|
-
|
22
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
23
|
-
|
24
|
-
=== Tutorial/example: writing and deploying a Hello World Rack application ===
|
25
|
-
|
26
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
27
|
-
|
28
|
-
=== Deploying to a virtual host's root ===
|
29
|
-
|
30
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
31
|
-
|
32
|
-
[[deploying_rack_to_sub_uri]]
|
33
|
-
=== Deploying to a sub URI ===
|
34
|
-
|
35
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
36
|
-
|
37
|
-
=== Redeploying (restarting the Rack application) ===
|
38
|
-
|
39
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/nginx/restart_app.html
|
40
|
-
|
41
|
-
=== Rackup specifications for various web frameworks ===
|
42
|
-
|
43
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/config_ru.html
|
44
|
-
|
45
|
-
|
46
|
-
[[deploying_a_wsgi_app]]
|
47
|
-
== Deploying a WSGI (Python) application
|
48
|
-
|
49
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
50
|
-
|
51
|
-
=== Tutorial/example: writing and deploying a Hello World WSGI application ===
|
52
|
-
|
53
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
54
|
-
|
55
|
-
=== Deploying to a virtual host's root ===
|
56
|
-
|
57
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
58
|
-
|
59
|
-
[[deploying_wsgi_to_sub_uri]]
|
60
|
-
=== Deploying to a sub URI ===
|
61
|
-
|
62
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
63
|
-
|
64
|
-
=== Redeploying (restarting the WSGI application) ===
|
65
|
-
|
66
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/nginx/restart_app.html
|
67
|
-
|
68
|
-
=== Sample `passenger_wsgi.py` for Django
|
69
|
-
|
70
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/wsgi_spec.html
|
71
|
-
|
72
|
-
|
73
|
-
== Deploying a Node.js application
|
74
|
-
|
75
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
76
|
-
|
77
|
-
|
78
|
-
== Deploying a Meteor application
|
79
|
-
|
80
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/nginx/
|
81
|
-
|
82
|
-
|
83
|
-
== Configuring Phusion Passenger ==
|
84
|
-
|
85
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/
|
86
|
-
|
87
|
-
[[PassengerRoot]]
|
88
|
-
=== passenger_root <directory> ===
|
89
|
-
|
90
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_root
|
91
|
-
|
92
|
-
=== Deployment options
|
93
|
-
|
94
|
-
==== passenger_enabled <on|off>
|
95
|
-
|
96
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_enabled
|
97
|
-
|
98
|
-
[[PassengerBaseURI]]
|
99
|
-
==== passenger_base_uri <uri>
|
100
|
-
|
101
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_base_uri
|
102
|
-
|
103
|
-
[[PassengerDocumentRoot]]
|
104
|
-
==== passenger_document_root <path>
|
105
|
-
|
106
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_document_root
|
107
|
-
|
108
|
-
=== Application loading options
|
109
|
-
|
110
|
-
[[PassengerRuby]]
|
111
|
-
==== passenger_ruby <filename>
|
112
|
-
|
113
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_ruby
|
114
|
-
|
115
|
-
==== passenger_python <filename>
|
116
|
-
|
117
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_python
|
118
|
-
|
119
|
-
==== passenger_nodejs <filename>
|
120
|
-
|
121
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_nodejs
|
122
|
-
|
123
|
-
==== passenger_meteor_app_settings <filename>
|
124
|
-
|
125
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_meteor_app_settings-filename
|
126
|
-
|
127
|
-
[[PassengerAppEnv]]
|
128
|
-
==== passenger_app_env <string>
|
129
|
-
|
130
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_app_env
|
131
|
-
|
132
|
-
[[RailsEnv]]
|
133
|
-
==== rails_env <string>
|
134
|
-
|
135
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_app_env
|
136
|
-
|
137
|
-
[[RackEnv]]
|
138
|
-
==== rack_env <string>
|
139
|
-
|
140
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_app_env
|
141
|
-
|
142
|
-
[[PassengerAppRoot]]
|
143
|
-
==== passenger_app_root <path/to/root>
|
144
|
-
|
145
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_app_root
|
146
|
-
|
147
|
-
[[PassengerAppGroupName]]
|
148
|
-
==== passenger_app_group_name <name>
|
149
|
-
|
150
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_app_group_name
|
151
|
-
|
152
|
-
[[PassengerAppType]]
|
153
|
-
==== passenger_app_type <name>
|
154
|
-
|
155
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_app_type
|
156
|
-
|
157
|
-
[[PassengerStartupFile]]
|
158
|
-
==== passenger_startup_file <filename>
|
159
|
-
|
160
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_startup_file
|
161
|
-
|
162
|
-
[[PassengerSpawnMethod]]
|
163
|
-
==== passenger_spawn_method <string>
|
164
|
-
|
165
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_spawn_method
|
166
|
-
|
167
|
-
[[PassengerEnvVar]]
|
168
|
-
==== passenger_env_var <name> <value>
|
169
|
-
|
170
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_env_var
|
171
|
-
|
172
|
-
[[PassengerLoadShellEnvvars]]
|
173
|
-
==== passenger_load_shell_envvars <on|off>
|
174
|
-
|
175
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_load_shell_envvars
|
176
|
-
|
177
|
-
[[PassengerRollingRestarts]]
|
178
|
-
==== passenger_rolling_restarts <on|off>
|
179
|
-
|
180
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_rolling_restarts
|
181
|
-
|
182
|
-
[[PassengerResistDeploymentErrors]]
|
183
|
-
==== passenger_resist_deployment_errors <on|off>
|
184
|
-
|
185
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_resist_deployment_errors
|
186
|
-
|
187
|
-
=== Security options ===
|
188
|
-
[[PassengerUserSwitching]]
|
189
|
-
==== passenger_user_switching <on|off> ====
|
190
|
-
|
191
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_user_switching
|
192
|
-
|
193
|
-
[[PassengerUser]]
|
194
|
-
==== passenger_user <username> ====
|
195
|
-
|
196
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_user
|
197
|
-
|
198
|
-
[[PassengerGroup]]
|
199
|
-
==== passenger_group <group name> ====
|
200
|
-
|
201
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_group
|
202
|
-
|
203
|
-
[[PassengerDefaultUser]]
|
204
|
-
==== passenger_default_user <username> ====
|
205
|
-
|
206
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_default_user
|
207
|
-
|
208
|
-
[[PassengerDefaultGroup]]
|
209
|
-
==== Passenger_default_group <group name> ====
|
210
|
-
|
211
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_default_group
|
212
|
-
|
213
|
-
==== passenger_show_version_in_header <on|off> ====
|
214
|
-
|
215
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_show_version_in_header
|
216
|
-
|
217
|
-
[[PassengerFriendlyErrorPages]]
|
218
|
-
==== passenger_friendly_error_pages <on|off> ====
|
219
|
-
|
220
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_friendly_error_pages
|
221
|
-
|
222
|
-
=== Resource control and optimization options ===
|
223
|
-
[[PassengerMaxPoolSize]]
|
224
|
-
==== passenger_max_pool_size <integer> ====
|
225
|
-
|
226
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_max_pool_size
|
227
|
-
|
228
|
-
[[PassengerMinInstances]]
|
229
|
-
==== passenger_min_instances <integer> ====
|
230
|
-
|
231
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_min_instances
|
232
|
-
|
233
|
-
[[PassengerMaxInstances]]
|
234
|
-
==== passenger_max_instances <integer> ====
|
235
|
-
|
236
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_max_instances
|
237
|
-
|
238
|
-
==== passenger_max_instances_per_app <integer> ====
|
239
|
-
|
240
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_max_instances_per_app
|
241
|
-
|
242
|
-
[[PassengerPoolIdleTime]]
|
243
|
-
==== passenger_pool_idle_time <integer> ====
|
244
|
-
|
245
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_pool_idle_time
|
246
|
-
|
247
|
-
==== passenger_max_preloader_idle_time <integer> ====
|
248
|
-
|
249
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_max_preloader_idle_time
|
250
|
-
|
251
|
-
==== passenger_start_timeout <seconds> ====
|
252
|
-
|
253
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_start_timeout
|
254
|
-
|
255
|
-
[[PassengerConcurrencyModel]]
|
256
|
-
==== passenger_concurrency_model <process|thread> ====
|
257
|
-
|
258
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_concurrency_model
|
259
|
-
|
260
|
-
[[PassengerThreadCount]]
|
261
|
-
==== passenger_thread_count <number> ====
|
262
|
-
|
263
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_thread_count
|
264
|
-
|
265
|
-
[[PassengerMaxRequests]]
|
266
|
-
==== passenger_max_requests <integer> ====
|
267
|
-
|
268
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_max_requests
|
269
|
-
|
270
|
-
[[PassengerMaxRequestTime]]
|
271
|
-
==== passenger_max_request_time <seconds> ====
|
272
|
-
|
273
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_max_request_time
|
274
|
-
|
275
|
-
[[PassengerMemoryLimit]]
|
276
|
-
==== passenger_memory_limit <integer> ====
|
277
|
-
|
278
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_memory_limit
|
279
|
-
|
280
|
-
==== passenger_stat_throttle_rate <integer> ====
|
281
|
-
|
282
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_stat_throttle_rate
|
283
|
-
|
284
|
-
[[PassengerPreStart]]
|
285
|
-
==== passenger_pre_start <url> ====
|
286
|
-
|
287
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_pre_start
|
288
|
-
|
289
|
-
|
290
|
-
=== Connection handling options ===
|
291
|
-
|
292
|
-
[[PassengerSetHeader]]
|
293
|
-
==== passenger_set_header <HTTP header name> <value> ====
|
294
|
-
|
295
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_set_header
|
296
|
-
|
297
|
-
[[passenger_max_request_queue_size]]
|
298
|
-
==== passenger_max_request_queue_size <number> ====
|
299
|
-
|
300
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_max_request_queue_size
|
301
|
-
|
302
|
-
[[passenger_request_queue_overflow_status_code]]
|
303
|
-
==== passenger_request_queue_overflow_status_code <code> ====
|
304
|
-
|
305
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_request_queue_overflow_status_code
|
306
|
-
|
307
|
-
[[PassengerStickySessions]]
|
308
|
-
==== passenger_sticky_sessions <on|off>
|
309
|
-
|
310
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_sticky_sessions
|
311
|
-
|
312
|
-
[[PassengerStickySessionsCookieName]]
|
313
|
-
==== passenger_sticky_sessions_cookie_name
|
314
|
-
|
315
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_sticky_sessions_cookie_name
|
316
|
-
|
317
|
-
==== passenger_ignore_client_abort <on|off> ====
|
318
|
-
|
319
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_ignore_client_abort
|
320
|
-
|
321
|
-
[[passenger_intercept_errors]]
|
322
|
-
==== passenger_intercept_errors <on|off> ====
|
323
|
-
|
324
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_intercept_errors
|
325
|
-
|
326
|
-
==== passenger_pass_header <header name> ====
|
327
|
-
|
328
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_pass_header-header-name
|
329
|
-
|
330
|
-
==== passenger_ignore_headers <header names...> ====
|
331
|
-
|
332
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_ignore_headers
|
333
|
-
|
334
|
-
==== passenger_headers_hash_bucket_size <size> ====
|
335
|
-
|
336
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_headers_hash_bucket_size
|
337
|
-
|
338
|
-
==== passenger_headers_hash_max_size <size> ====
|
339
|
-
|
340
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_headers_hash_max_size
|
341
|
-
|
342
|
-
[[passenger_buffer_response]]
|
343
|
-
==== passenger_buffer_response <on|off> ====
|
344
|
-
|
345
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_buffer_response
|
346
|
-
|
347
|
-
[[PassengerResponseBufferHighWatermark]]
|
348
|
-
==== passenger_response_buffer_high_watermark <bytes>
|
349
|
-
|
350
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_response_buffer_high_watermark
|
351
|
-
|
352
|
-
==== passenger_buffer_size ====
|
353
|
-
==== passenger_buffers ====
|
354
|
-
==== passenger_busy_buffers_size ====
|
355
|
-
|
356
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_buffer_size-passenger_buffers-passenger_busy_buffers_size
|
357
|
-
|
358
|
-
|
359
|
-
=== Logging and debugging options ===
|
360
|
-
|
361
|
-
[[PassengerLogLevel]]
|
362
|
-
==== passenger_log_level <integer> ====
|
363
|
-
|
364
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_log_level
|
365
|
-
|
366
|
-
[[PassengerLogFile]]
|
367
|
-
==== passenger_log_file <filename> ====
|
368
|
-
|
369
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_log_file
|
370
|
-
|
371
|
-
==== PassengerFileDescriptorLogFile <filename>
|
372
|
-
|
373
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_file_descriptor_log_file
|
374
|
-
|
375
|
-
==== passenger_debugger <on|off> ====
|
376
|
-
|
377
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_debugger
|
378
|
-
|
379
|
-
|
380
|
-
=== Advanced options
|
381
|
-
|
382
|
-
[[PassengerInstanceRegistryDir]]
|
383
|
-
==== passenger_instance_registry_dir <directory>
|
384
|
-
|
385
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_instance_registry_dir
|
386
|
-
|
387
|
-
[[PassengerDataBufferDir]]
|
388
|
-
==== passenger_data_buffer_dir <directory>
|
389
|
-
|
390
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_data_buffer_dir
|
391
|
-
|
392
|
-
==== passenger_fly_with <socket filename>
|
393
|
-
|
394
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/nginx/reference/#passenger_fly_with
|
395
|
-
|
396
|
-
|
397
|
-
=== Deprecated or removed options ===
|
398
|
-
|
399
|
-
The following options have been deprecated or removed. Some are still supported for backwards
|
400
|
-
compatibility reasons.
|
401
|
-
|
402
|
-
==== rails_spawn_method ====
|
403
|
-
Deprecated in favor of <<PassengerSpawnMethod,passenger_spawn_method>>.
|
404
|
-
|
405
|
-
==== passenger_debug_log_file ====
|
406
|
-
This option has been renamed in version 5.0.5 to <<PassengerLogFile,passenger_log_file>>.
|
407
|
-
|
408
|
-
|
409
|
-
[[troubleshooting]]
|
410
|
-
== Troubleshooting ==
|
411
|
-
|
412
|
-
include::users_guide_snippets/troubleshooting/default.txt[]
|
413
|
-
|
414
|
-
=== The application thinks its not on SSL even though it is
|
415
|
-
|
416
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/nginx/troubleshooting/
|
417
|
-
|
418
|
-
include::users_guide_snippets/troubleshooting/rails.txt[]
|
419
|
-
|
420
|
-
|
421
|
-
== Analysis and system maintenance ==
|
422
|
-
|
423
|
-
include::users_guide_snippets/analysis_and_system_maintenance.txt[]
|
424
|
-
|
425
|
-
|
426
|
-
== Tips ==
|
427
|
-
|
428
|
-
include::users_guide_snippets/tips.txt[]
|
429
|
-
|
430
|
-
|
431
|
-
== Under the hood ==
|
432
|
-
|
433
|
-
include::users_guide_snippets/under_the_hood/page_caching_support.txt[]
|
434
|
-
include::users_guide_snippets/under_the_hood/relationship_with_ruby.txt[]
|
435
|
-
|
436
|
-
[[application_detection]]
|
437
|
-
=== How Phusion Passenger detects whether a virtual host is a web application ===
|
438
|
-
|
439
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/indepth/app_autodetection/nginx/
|
440
|
-
|
441
|
-
|
442
|
-
include::users_guide_snippets/appendix_a_about.txt[]
|
443
|
-
|
444
|
-
include::users_guide_snippets/appendix_b_terminology.txt[]
|
445
|
-
|
446
|
-
include::users_guide_snippets/appendix_c_spawning_methods.txt[]
|
447
|
-
|
448
|
-
[[about_environment_variables]]
|
449
|
-
== Appendix D: About environment variables
|
450
|
-
|
451
|
-
include::users_guide_snippets/environment_variables.txt[]
|