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,451 +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-zkewk3
|
16
|
-
|
17
|
-
1.1. Supported operating systems and languages => supported-operating-systems-rhbg35
|
18
|
-
|
19
|
-
1.2. Where to get support => where-to-get-support-f3pbrb
|
20
|
-
|
21
|
-
2. Installation => installing-upgrading-and-uninstalling-phusion-passenger-laryvs
|
22
|
-
|
23
|
-
2.1. Synopsis => synopsis-l0om5d
|
24
|
-
|
25
|
-
2.2. Installing or upgrading on Mac OS X with Homebrew => installing-or-upgrading-on-mac-os-x-with-homebrew-1pia1cx
|
26
|
-
|
27
|
-
2.3. Installing or upgrading on Debian or Ubuntu => installing-or-upgrading-on-ubuntu-1xg22xs
|
28
|
-
|
29
|
-
2.3.1. Adding our APT repository => adding-our-apt-repository-1l8plxk
|
30
|
-
|
31
|
-
2.3.2. Installing packages => installing-packages-1jxn722
|
32
|
-
|
33
|
-
2.4. Installing or upgrading on Red Hat or CentOS => installing-or-upgrading-on-red-hat-fedora-centos-or-scientificlinux-1y5ie8b
|
34
|
-
|
35
|
-
2.4.1. Adding our YUM repository => adding-our-yum-repository-1fb671i
|
36
|
-
|
37
|
-
2.4.2. Installing packages => installing-packages-12a3uty
|
38
|
-
|
39
|
-
2.5. Installing or upgrading on Heroku => installing-or-upgrading-on-heroku-o0o2mk
|
40
|
-
|
41
|
-
2.6. Generic installation, upgrade and downgrade method: via RubyGems => installing-via-the-gem-39jw1u
|
42
|
-
|
43
|
-
2.7. Generic installation, upgrade and downgrade method: via tarball => installing-via-the-source-tarball-1cgxrqc
|
44
|
-
|
45
|
-
2.8. Upgrading from open source to Enterprise => upgrading-from-open-source-to-enterprise-b17h8g
|
46
|
-
|
47
|
-
2.9. Cryptographic verification of installation files => cryptographic-verification-of-installation-files-ed3r9v
|
48
|
-
|
49
|
-
2.9.1. Synopsis => synopsis-uwnz2o
|
50
|
-
|
51
|
-
2.9.2. Importing the Phusion Software Signing key => importing-the-phusion-software-signing-key-1x0rhv
|
52
|
-
|
53
|
-
2.9.3. Verifying the Phusion Software Signing key => verifying-the-phusion-software-signing-key-10430lg
|
54
|
-
|
55
|
-
2.9.4. Verifying the gem and tarball => verifying-the-gem-and-tarball-1nf0uov
|
56
|
-
|
57
|
-
2.9.5. Verifying Git signatures => verifying-git-signatures-oaafwd
|
58
|
-
|
59
|
-
2.9.6. Verifying Debian packages => verifying-deb-and-rpm-packages-vgtv04
|
60
|
-
|
61
|
-
2.9.7. Verifying RPM packages => verifying-rpm-packages-1nlx51r
|
62
|
-
|
63
|
-
2.9.8. Revocation => revocation-4o01n2
|
64
|
-
|
65
|
-
2.10. Non-interactive, automatic, headless installs or upgrades => non-interactive-automatic-headless-installs-or-upgrades-1arnxii
|
66
|
-
|
67
|
-
2.11. Customizing the compilation process => customizing-the-compilation-process-1sds3od
|
68
|
-
|
69
|
-
2.11.1. Setting the compiler => setting-the-compiler-1symq7h
|
70
|
-
|
71
|
-
2.11.2. Adding additional compiler or linker flags => adding-additional-compiler-or-linker-flags-wzu0ey
|
72
|
-
|
73
|
-
2.11.3. Forcing location of command line tools and dependencies => forcing-location-of-certain-command-line-tools-1hym30u
|
74
|
-
|
75
|
-
2.12. Dealing with multiple Apache installations => dealing-with-multiple-apache-installations-ks5nkz
|
76
|
-
|
77
|
-
2.13. Working with the Apache configuration file => locating-the-apache-configuration-file-1fterqv
|
78
|
-
|
79
|
-
2.14. Disabling without uninstalling => unloading-disabling-phusion-passenger-from-apache-without-uninstalling-it-s1axnx
|
80
|
-
|
81
|
-
2.15. Uninstalling => uninstalling-phusion-passenger-1qb4ssq
|
82
|
-
|
83
|
-
2.16. Moving to a different directory => moving-to-a-different-directory-1n0gkwh
|
84
|
-
|
85
|
-
3. Deploying a Rack-based Ruby application => deploying-a-rack-based-ruby-application-including-rails-3--hcs66f
|
86
|
-
|
87
|
-
3.1. Tutorial/example: writing and deploying a Hello World Rack application => tutorial-example-writing-and-deploying-a-hello-world-rack-application-axp5z5
|
88
|
-
|
89
|
-
3.2. Deploying to a virtual host’s root => deploying-to-a-virtual-host-s-root-ab4zj6
|
90
|
-
|
91
|
-
3.3. Deploying to a sub URI => deploying-to-a-sub-uri-13rfygg
|
92
|
-
|
93
|
-
3.4. Redeploying (restarting the Rack application) => redeploying-restarting-the-rack-application--18m41m1
|
94
|
-
|
95
|
-
3.5. Rackup specifications for various web frameworks => rackup-specifications-for-various-web-frameworks-ndsqc2
|
96
|
-
|
97
|
-
4. Deploying a WSGI (Python) application => deploying-a-wsgi-python-application-7aygdl
|
98
|
-
|
99
|
-
4.1. Tutorial/example: writing and deploying a Hello World WSGI application => tutorial-example-writing-and-deploying-a-hello-world-wsgi-application-9ziqy8
|
100
|
-
|
101
|
-
4.2. Deploying to a virtual host’s root => deploying-to-a-virtual-host-s-root-u9bfax
|
102
|
-
|
103
|
-
4.3. Deploying to a sub URI => deploying-to-a-sub-uri-zekba6
|
104
|
-
|
105
|
-
4.4. Redeploying (restarting the WSGI application) => redeploying-restarting-the-wsgi-application--na7pmf
|
106
|
-
|
107
|
-
4.5. Sample passenger_wsgi.py for Django => sample-passenger-wsgi-py-for-django-slb9m8
|
108
|
-
|
109
|
-
5. Deploying a Node.js application => deploying-a-node-js-application-882ecy
|
110
|
-
|
111
|
-
6. Deploying a Meteor application => deploying-a-meteor-application-mxfmir
|
112
|
-
|
113
|
-
7. Configuring Phusion Passenger => configuring-phusion-passenger-11oztoe
|
114
|
-
|
115
|
-
7.1. PassengerRoot <directory> => passengerroot-directory--sere8l
|
116
|
-
|
117
|
-
7.2. PassengerDefaultRuby <filename> => passengerdefaultruby-and-passengerruby-7zblp8
|
118
|
-
|
119
|
-
7.3. Deployment options => deployment-options-1unzrll
|
120
|
-
|
121
|
-
7.3.1. PassengerEnabled <on|off> => passengerenabled-on-off--74rzth
|
122
|
-
|
123
|
-
7.3.2. PassengerBaseURI <uri> => passengerbaseuri-uri--97i9mm
|
124
|
-
|
125
|
-
7.4. Application loading options => application-loading-options-1uedd4o
|
126
|
-
|
127
|
-
7.4.1. PassengerRuby <filename> => passengerruby-filename--1r3fv73
|
128
|
-
|
129
|
-
7.4.2. PassengerPython <filename> => passengerpython-filename--1ssesv3
|
130
|
-
|
131
|
-
7.4.3. PassengerNodejs <filename> => passengernodejs-filename--2mjb1j
|
132
|
-
|
133
|
-
7.4.4. PassengerMeteorAppSettings <filename> => passengermeteorappsettings-filename--inl1bd
|
134
|
-
|
135
|
-
7.4.5. PassengerAppEnv <string> => passengerappenv-string--s3ojlc
|
136
|
-
|
137
|
-
7.4.6. RailsEnv <string> => railsenv-string--1b0xxvu
|
138
|
-
|
139
|
-
7.4.7. RackEnv <string> => rackenv-string--vve9py
|
140
|
-
|
141
|
-
7.4.8. PassengerAppRoot <path/to/root> => passengerapproot-path-to-root--uf24yd
|
142
|
-
|
143
|
-
7.4.9. PassengerAppGroupName <name> => passenger-app-group-name-name--6unn5c
|
144
|
-
|
145
|
-
7.4.10. PassengerAppType <name> => passengerapptype-name--62jzqf
|
146
|
-
|
147
|
-
7.4.11. PassengerStartupFile <filename> => passengerstartupfile-filename--14vhvn9
|
148
|
-
|
149
|
-
7.4.12. PassengerRestartDir <directory> => passengerrestartdir-directory--1fmhmv0
|
150
|
-
|
151
|
-
7.4.13. PassengerSpawnMethod <string> => passengerspawnmethod-string--sodg2y
|
152
|
-
|
153
|
-
7.4.14. PassengerLoadShellEnvvars <on|off> => passengerloadshellenvvars-on-off--1290yz1
|
154
|
-
|
155
|
-
7.4.15. PassengerRollingRestarts <on|off> => passengerrollingrestarts
|
156
|
-
|
157
|
-
7.4.16. PassengerResistDeploymentErrors <on|off> => passengerresistdeploymenterrors
|
158
|
-
|
159
|
-
7.5. Security options => security-options-1pb75ho
|
160
|
-
|
161
|
-
7.5.1. PassengerUserSwitching <on|off> => passengeruserswitching
|
162
|
-
|
163
|
-
7.5.2. PassengerUser <username> => passengeruser
|
164
|
-
|
165
|
-
7.5.3. PassengerGroup <group name> => passengergroup
|
166
|
-
|
167
|
-
7.5.4. PassengerDefaultUser <username> => passengerdefaultuser
|
168
|
-
|
169
|
-
7.5.5. PassengerDefaultGroup <group name> => passengerdefaultgroup
|
170
|
-
|
171
|
-
7.5.6. PassengerFriendlyErrorPages <on|off> => passengerfriendlyerrorpages
|
172
|
-
|
173
|
-
7.6. Resource control and optimization options => resource-control-and-optimization-options-zu2f7u
|
174
|
-
|
175
|
-
7.6.1. PassengerMaxPoolSize <integer> => passengermaxpoolsize-integer--am64q8
|
176
|
-
|
177
|
-
7.6.2. PassengerMinInstances <integer> => passengermininstances-integer--wegq6b
|
178
|
-
|
179
|
-
7.6.3. PassengerMaxInstances <integer> => passengermaxinstances
|
180
|
-
|
181
|
-
7.6.4. PassengerMaxInstancesPerApp <integer> => passengermaxinstancesperapp
|
182
|
-
|
183
|
-
7.6.5. PassengerPoolIdleTime <integer> => passengerpoolidletime-integer--a3gunq
|
184
|
-
|
185
|
-
7.6.6. PassengerMaxPreloaderIdleTime <integer> => railsappspawneridletime-integer--1awgog1
|
186
|
-
|
187
|
-
7.6.7. PassengerStartTimeout <seconds> => passengerstarttimeout-seconds--ihnfku
|
188
|
-
|
189
|
-
7.6.8. PassengerConcurrencyModel <process|thread> => passengerconcurrencymodel-process-thread--1eipofj
|
190
|
-
|
191
|
-
7.6.9. PassengerThreadCount <number> => passengerthreadcount-number--10jl64a
|
192
|
-
|
193
|
-
7.6.10. PassengerMaxRequests <integer> => passengermaxrequests-integer--17qkw9n
|
194
|
-
|
195
|
-
7.6.11. PassengerMaxRequestTime <seconds> => passengermaxrequesttime-seconds--127v1i2
|
196
|
-
|
197
|
-
7.6.12. PassengerMemoryLimit <integer> => passengermemorylimit-integer--18irza1
|
198
|
-
|
199
|
-
7.6.13. PassengerStatThrottleRate <integer> => passengerstatthrottlerate-integer--1dcfda3
|
200
|
-
|
201
|
-
7.6.14. PassengerPreStart <url> => passengerprestart-url--1utb57k
|
202
|
-
|
203
|
-
7.6.15. PassengerHighPerformance <on|off> => passengerhighperformance-on-off--nvfa86
|
204
|
-
|
205
|
-
7.7. Connection handling options => connection-handling-options-1k3zd1a
|
206
|
-
|
207
|
-
7.7.1. PassengerBufferUpload <on|off> => passengerbufferupload-on-off--1lsjr93
|
208
|
-
|
209
|
-
7.7.2. PassengerBufferResponse <on|off> => passengerbufferresponse-on-off--1y7ilka
|
210
|
-
|
211
|
-
7.7.3. PassengerResponseBufferHighWatermark <bytes> => passengerresponsebufferhighwatermark-bytes--1kj32df
|
212
|
-
|
213
|
-
7.7.4. PassengerErrorOverride <on|off> => passengererroroverride-on-off--1pq9nez
|
214
|
-
|
215
|
-
7.7.5. PassengerMaxRequestQueueSize <number> => passenger-max-request-queue-size-number--1f1uocd
|
216
|
-
|
217
|
-
7.7.6. PassengerStickySessions <on|off> => passengerstickysessions-on-off--fx1jkt
|
218
|
-
|
219
|
-
7.7.7. PassengerStickySessionsCookieName => passenger-sticky-sessions-cookie-name-stktkx
|
220
|
-
|
221
|
-
7.8. Compatibility options => compatibility-options-8jve5a
|
222
|
-
|
223
|
-
7.8.1. PassengerResolveSymlinksInDocumentRoot <on|off> => passengerresolvesymlinksindocumentroot-on-off--1r0qcp8
|
224
|
-
|
225
|
-
7.8.2. PassengerAllowEncodedSlashes <on|off> => passengerallowencodedslashes-on-off--1y3s1ww
|
226
|
-
|
227
|
-
7.9. Logging and debugging options => logging-and-debugging-options-el2cuc
|
228
|
-
|
229
|
-
7.9.1. PassengerLogLevel <integer> => passengerloglevel-integer--s3kbil
|
230
|
-
|
231
|
-
7.9.2. PassengerLogFile <filename> => passengerdebuglogfile-filename--1wjm2j1
|
232
|
-
|
233
|
-
7.9.3. PassengerFileDescriptorLogFile <filename> => passengerfiledescriptorlogfile-filename--1su5dcn
|
234
|
-
|
235
|
-
7.9.4. PassengerDebugger <on|off> => passengerdebugger-on-off--19you7e
|
236
|
-
|
237
|
-
7.10. Advanced options => advanced-options-1ab1jkq
|
238
|
-
|
239
|
-
7.10.1. PassengerInstanceRegistryDir <directory> => passengerinstanceregistrydir-directory--7r1ks8
|
240
|
-
|
241
|
-
7.10.2. PassengerDataBufferDir <directory> => passengerdatabufferdir-directory--170fjqg
|
242
|
-
|
243
|
-
7.11. Deprecated or removed options => deprecated-options-pm9m57
|
244
|
-
|
245
|
-
7.11.1. RailsRuby => railsruby-ht09ei
|
246
|
-
|
247
|
-
7.11.2. RailsBaseURI and RackBaseURI => railsbaseuri-uri--1txrw3k
|
248
|
-
|
249
|
-
7.11.3. RailsUserSwitching => railsuserswitching-1npx8y4
|
250
|
-
|
251
|
-
7.11.4. RailsDefaultUser => railsdefaultuser-19j7n3m
|
252
|
-
|
253
|
-
7.11.5. RailsAllowModRewrite => railsallowmodrewrite-1vkziro
|
254
|
-
|
255
|
-
7.11.6. RailsSpawnMethod => railsspawnmethod-1aljgpa
|
256
|
-
|
257
|
-
7.11.7. RailsAutoDetect, RackAutoDetect and WsgiAutoDetect => railsautodetect-rackautodetect-and-wsgiautodetect-1qgakzs
|
258
|
-
|
259
|
-
7.11.8. RailsAppSpawnerIdleTime => railsappspawneridletime-heh41r
|
260
|
-
|
261
|
-
7.11.9. RailsFrameworkSpawnerIdleTime => railsframeworkspawneridletime-adcf9k
|
262
|
-
|
263
|
-
7.11.10. PassengerDebugLogFile => passengerdebuglogfile-1mb9h6h
|
264
|
-
|
265
|
-
8. Troubleshooting => troubleshooting-2ihihi
|
266
|
-
|
267
|
-
8.1. Generic troubleshooting tips => generic-troubleshooting-tips-130iuhe
|
268
|
-
|
269
|
-
8.2. Why does the first request take a long time? => why-does-the-first-request-take-a-long-time--12mg452
|
270
|
-
|
271
|
-
8.3. 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-v9z223
|
272
|
-
|
273
|
-
8.4. OS X: The installer cannot locate MAMP’s Apache => macos-x-the-installer-cannot-locate-mamp-s-apache-or908n
|
274
|
-
|
275
|
-
8.5. Apache reports a "403 Forbidden" error => apache-reports-a-403-forbidden-error-140tb4p
|
276
|
-
|
277
|
-
8.6. Static assets such as images and stylesheets aren’t being displayed => static-assets-such-as-images-and-stylesheets-aren-t-being-displayed-uaptpi
|
278
|
-
|
279
|
-
8.7. Apache cannot access my app’s files because of SELinux errors => apache-cannot-access-my-app-s-files-because-of-selinux-errors-6febhd
|
280
|
-
|
281
|
-
8.8. The application thinks its not on SSL even though it is => the-application-thinks-its-not-on-ssl-even-though-it-is-u9fcp1
|
282
|
-
|
283
|
-
8.9. Ruby on Rails-specific troubleshooting => ruby-on-rails-specific-problems-6umss5
|
284
|
-
|
285
|
-
8.9.1. The "About your application’s environment" link does not work => the-about-your-application-s-environment-link-does-not-work-7k4tlm
|
286
|
-
|
287
|
-
8.9.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-v53i6s
|
288
|
-
|
289
|
-
8.9.3. The Rails application’s log file is not being written to => my-rails-application-s-log-file-is-not-being-written-to-3i747l
|
290
|
-
|
291
|
-
8.10. Conflicting Apache modules => conflicting-apache-modules-1uwpixk
|
292
|
-
|
293
|
-
8.10.1. mod_userdir => mod-userdir-x5e2te
|
294
|
-
|
295
|
-
8.10.2. MultiViews (mod_negotiation) => multiviews-mod-negotiation--zchfg0
|
296
|
-
|
297
|
-
8.10.3. VirtualDocumentRoot => virtualdocumentroot-14cwd7l
|
298
|
-
|
299
|
-
9. Analysis and system maintenance => analysis-and-system-maintenance-qvkwzr
|
300
|
-
|
301
|
-
9.1. Inspecting memory usage => inspecting-memory-usage-1bkis6i
|
302
|
-
|
303
|
-
9.2. Inspecting Phusion Passenger’s internal status => inspecting-phusion-passenger-s-internal-status-ukekf7
|
304
|
-
|
305
|
-
9.3. Debugging frozen applications => debugging-frozen-applications-1qsjqq7
|
306
|
-
|
307
|
-
9.4. Accessing individual application processes => accessing-individual-application-processes-1p0j4jb
|
308
|
-
|
309
|
-
9.5. Attaching an IRB console to an application process => attaching-an-irb-console-to-an-application-process-1cma32j
|
310
|
-
|
311
|
-
10. Tips => tips-19cwwf7
|
312
|
-
|
313
|
-
10.1. User Switching (security feature) => user-switching-security--8njx1x
|
314
|
-
|
315
|
-
10.1.1. Requirements => requirements-yxvtxo
|
316
|
-
|
317
|
-
10.1.2. Effects => effects-1lko7vo
|
318
|
-
|
319
|
-
10.1.3. Caveats & troubleshooting => caveats-troubleshooting-161hgge
|
320
|
-
|
321
|
-
10.1.4. Red Hat and CentOS caveats => red-hat-and-centos-caveats-1335bpz
|
322
|
-
|
323
|
-
10.1.5. Finding out what user an application is running as => finding-out-what-user-an-application-is-running-as-7uwrol
|
324
|
-
|
325
|
-
10.2. Copy-on-write memory support (reducing memory consumption of Ruby applications) => reducing-memory-consumption-of-ruby-on-rails-applications-by-33--1ubxnq0
|
326
|
-
|
327
|
-
10.3. Tuning for Server Sent Events and WebSockets => tuning-for-server-sent-events-and-websockets-1hy6qa9
|
328
|
-
|
329
|
-
10.4. Bundler support => bundler-support-cf72ih
|
330
|
-
|
331
|
-
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--17whimp
|
332
|
-
|
333
|
-
10.5. Installing multiple Ruby on Rails versions => installing-multiple-ruby-on-rails-versions-mi5j14
|
334
|
-
|
335
|
-
10.6. Making the application restart after each request => making-the-application-restart-after-each-request-183bezx
|
336
|
-
|
337
|
-
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-a63b6r
|
338
|
-
|
339
|
-
10.8. Out-of-Band Work and Out-of-Band Garbage Collection => out-of-band-work-and-out-of-band-garbage-collection-kav2p8
|
340
|
-
|
341
|
-
10.9. Hooks => hooks-bcltgp
|
342
|
-
|
343
|
-
10.9.1. Example => example-icjf0z
|
344
|
-
|
345
|
-
10.9.2. Environment => environment-1amls4v
|
346
|
-
|
347
|
-
10.9.3. Blocking and concurrency => blocking-and-concurrency-cxpbyu
|
348
|
-
|
349
|
-
10.9.4. Error handling => error-handling-1a1uvod
|
350
|
-
|
351
|
-
10.9.5. Compatibility => compatibility-18tl6g3
|
352
|
-
|
353
|
-
10.9.6. Available hooks => available-hooks-159anc3
|
354
|
-
|
355
|
-
10.10. Flying Passenger => flying-passenger-q916f7
|
356
|
-
|
357
|
-
10.10.1. Requirements => requirements-1ntkin3
|
358
|
-
|
359
|
-
10.10.2. Basic usage => basic-usage-joifsk
|
360
|
-
|
361
|
-
10.10.3. Configuring Flying Passenger => configuring-flying-passenger-1v35vgg
|
362
|
-
|
363
|
-
10.10.4. Managing the Flying Passenger daemon => managing-the-flying-passenger-daemon-1bng2bu
|
364
|
-
|
365
|
-
10.10.5. Using Flying Passenger with MRI 1.8 or JRuby => using-flying-passenger-with-mri-1-8-or-jruby-f5tbvs
|
366
|
-
|
367
|
-
10.10.6. Caveats and limitations => caveats-and-limitations-lz3rbb
|
368
|
-
|
369
|
-
10.11. X-Sendfile support => x-sendfile-support-1cgyykw
|
370
|
-
|
371
|
-
10.12. Upload progress => upload-progress-71cyl7
|
372
|
-
|
373
|
-
11. Under the hood => under-the-hood-21ue5t
|
374
|
-
|
375
|
-
11.1. Page caching support => page-caching-support-kwq9b9
|
376
|
-
|
377
|
-
11.2. Phusion Passenger and its relationship with Ruby => phusion-passenger-and-its-relationship-with-ruby-1eq08ff
|
378
|
-
|
379
|
-
11.2.1. How Ruby is used => how-ruby-is-used-14r83nr
|
380
|
-
|
381
|
-
11.2.2. When the system has multiple Ruby interpreters => when-the-system-has-multiple-ruby-interpreters-10tm1fq
|
382
|
-
|
383
|
-
11.3. Static assets serving => static-assets-serving-wo2d9v
|
384
|
-
|
385
|
-
11.4. How Phusion Passenger detects whether a virtual host is a web application => how-phusion-passenger-detects-whether-a-virtual-host-is-a-web-application-179mp8m
|
386
|
-
|
387
|
-
12. Appendix A: About this document => appendix-a-about-this-document-103toqs
|
388
|
-
|
389
|
-
13. Appendix B: Terminology => appendix-b-terminology-h4eaf4
|
390
|
-
|
391
|
-
13.1. Application root => application-root-otx6xf
|
392
|
-
|
393
|
-
13.2. Idle process => idle-process-potb6g
|
394
|
-
|
395
|
-
13.3. Inactive process => inactive-process-16gjv2e
|
396
|
-
|
397
|
-
14. Appendix C: Spawning methods explained => appendix-c-spawning-methods-explained-owghi9
|
398
|
-
|
399
|
-
14.1. The most straightforward and traditional way: direct spawning => the-most-straightforward-and-traditional-way-conservative-spawning-1ybbli2
|
400
|
-
|
401
|
-
14.2. The smart spawning method => the-smart-spawning-method-1cvu9dd
|
402
|
-
|
403
|
-
14.2.1. How it works => how-it-works-672zja
|
404
|
-
|
405
|
-
14.2.2. Summary of benefits => summary-of-benefits-1yrihfb
|
406
|
-
|
407
|
-
14.3. Smart spawning caveat #1: unintentional file descriptor sharing => smart-spawning-gotcha-1-unintentional-file-descriptor-sharing-z1y55l
|
408
|
-
|
409
|
-
14.3.1. Example 1: Memcached connection sharing (harmful) => example-1-memcached-connection-sharing-harmful--c71wqw
|
410
|
-
|
411
|
-
14.3.2. Example 2: Log file sharing (not harmful) => example-2-log-file-sharing-not-harmful--1p2yuol
|
412
|
-
|
413
|
-
14.4. Smart spawning caveat #2: the need to revive threads => smart-spawning-gotcha-2-the-need-to-revive-threads-1k6cj7d
|
414
|
-
|
415
|
-
15. Appendix D: About environment variables => appendix-d-about-environment-variables-1lebv1u
|
416
|
-
|
417
|
-
15.1. Working with environment variables => working-with-environment-variables-85e6aa
|
418
|
-
|
419
|
-
15.2. The PATH environment variable => the-path-environment-variable-p8e32r
|
420
|
-
|
421
|
-
15.2.1. Adding Phusion Passenger’s administration tools to PATH => adding-phusion-passenger-s-administration-tools-to-path-xwppud
|
422
|
-
|
423
|
-
15.3. Making environment variables permanent => making-environment-variables-permanent-13x0l4h
|
424
|
-
|
425
|
-
15.3.1. bash => bash-1pktn63
|
426
|
-
|
427
|
-
15.3.2. Apache => apache-15zqjvi
|
428
|
-
|
429
|
-
15.3.3. Nginx => nginx-l7ztbb
|
430
|
-
|
431
|
-
15.3.4. cron => cron-1kjp7ck
|
432
|
-
|
433
|
-
15.3.5. Phusion Passenger-served apps => phusion-passenger-served-apps-478vyt
|
434
|
-
|
435
|
-
15.4. Environment variables and sudo => environment-variables-and-sudo-1odzcpz
|
436
|
-
|
437
|
-
|
438
|
-
### These sections appear to have been removed. Please check.
|
439
|
-
|
440
|
-
3.5.1. Camping => camping-1kxexk0
|
441
|
-
|
442
|
-
3.5.2. Halcyon => halcyon-1ghnpmz
|
443
|
-
|
444
|
-
3.5.3. Mack => mack-miht6b
|
445
|
-
|
446
|
-
3.5.4. Merb => merb-iyj7qy
|
447
|
-
|
448
|
-
3.5.5. Ramaze => ramaze-boddtj
|
449
|
-
|
450
|
-
3.5.6. Sinatra => sinatra-1hubto4
|
451
|
-
|
data/doc/Users guide Apache.txt
DELETED
@@ -1,534 +0,0 @@
|
|
1
|
-
Phusion Passenger users guide, Apache version
|
2
|
-
=============================================
|
3
|
-
|
4
|
-
image:images/phusion_banner.png[link="http://www.phusion.nl/"]
|
5
|
-
|
6
|
-
This is the old, deprecated Passenger for Apache 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-based Ruby application ==
|
20
|
-
|
21
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
22
|
-
|
23
|
-
=== Tutorial/example: writing and deploying a Hello World Rack application ===
|
24
|
-
|
25
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
26
|
-
|
27
|
-
=== Deploying to a virtual host's root ===
|
28
|
-
|
29
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
30
|
-
|
31
|
-
[[deploying_rack_to_sub_uri]]
|
32
|
-
=== Deploying to a sub URI ===
|
33
|
-
|
34
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
35
|
-
|
36
|
-
=== Redeploying (restarting the Rack application) ===
|
37
|
-
|
38
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/restart_app.html
|
39
|
-
|
40
|
-
=== Rackup specifications for various web frameworks ===
|
41
|
-
include::users_guide_snippets/rackup_specifications.txt[]
|
42
|
-
|
43
|
-
|
44
|
-
== Deploying a WSGI (Python) application
|
45
|
-
|
46
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
47
|
-
|
48
|
-
=== Tutorial/example: writing and deploying a Hello World WSGI application ===
|
49
|
-
|
50
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
51
|
-
|
52
|
-
=== Deploying to a virtual host's root ===
|
53
|
-
|
54
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
55
|
-
|
56
|
-
[[deploying_python_to_sub_uri]]
|
57
|
-
=== Deploying to a sub URI ===
|
58
|
-
|
59
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
60
|
-
|
61
|
-
=== Redeploying (restarting the WSGI application) ===
|
62
|
-
|
63
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/restart_app.html
|
64
|
-
|
65
|
-
=== Sample `passenger_wsgi.py` for Django
|
66
|
-
|
67
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/wsgi_spec.html
|
68
|
-
|
69
|
-
|
70
|
-
== Deploying a Node.js application
|
71
|
-
|
72
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
73
|
-
|
74
|
-
|
75
|
-
== Deploying a Meteor application
|
76
|
-
|
77
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/deploy/apache/
|
78
|
-
|
79
|
-
|
80
|
-
== Configuring Phusion Passenger ==
|
81
|
-
|
82
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/
|
83
|
-
|
84
|
-
[[PassengerRoot]]
|
85
|
-
=== PassengerRoot <directory> ===
|
86
|
-
|
87
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerroot
|
88
|
-
|
89
|
-
[[PassengerDefaultRuby]]
|
90
|
-
=== PassengerDefaultRuby <filename> ===
|
91
|
-
|
92
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerdefaultruby
|
93
|
-
|
94
|
-
=== Deployment options
|
95
|
-
|
96
|
-
[[PassengerEnabled]]
|
97
|
-
==== PassengerEnabled <on|off>
|
98
|
-
|
99
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerenabled
|
100
|
-
|
101
|
-
[[PassengerBaseURI]]
|
102
|
-
==== PassengerBaseURI <uri> ====
|
103
|
-
|
104
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerbaseuri
|
105
|
-
|
106
|
-
=== Application loading options
|
107
|
-
|
108
|
-
[[PassengerRuby]]
|
109
|
-
==== PassengerRuby <filename>
|
110
|
-
|
111
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerruby
|
112
|
-
|
113
|
-
==== PassengerPython <filename>
|
114
|
-
|
115
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerpython
|
116
|
-
|
117
|
-
==== PassengerNodejs <filename>
|
118
|
-
|
119
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengernodejs
|
120
|
-
|
121
|
-
==== PassengerMeteorAppSettings <filename>
|
122
|
-
|
123
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermeteorappsettings
|
124
|
-
|
125
|
-
[[PassengerAppEnv]]
|
126
|
-
==== PassengerAppEnv <string> ====
|
127
|
-
|
128
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerappenv
|
129
|
-
|
130
|
-
[[rails_env]]
|
131
|
-
==== RailsEnv <string> ====
|
132
|
-
|
133
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsenv-rackenv
|
134
|
-
|
135
|
-
[[rack_env]]
|
136
|
-
==== RackEnv <string> ====
|
137
|
-
|
138
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsenv-rackenv
|
139
|
-
|
140
|
-
[[PassengerAppRoot]]
|
141
|
-
==== PassengerAppRoot <path/to/root>
|
142
|
-
|
143
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerapproot
|
144
|
-
|
145
|
-
[[PassengerAppGroupName]]
|
146
|
-
==== PassengerAppGroupName <name>
|
147
|
-
|
148
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerappgroupname
|
149
|
-
|
150
|
-
[[PassengerAppType]]
|
151
|
-
==== PassengerAppType <name>
|
152
|
-
|
153
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerapptype
|
154
|
-
|
155
|
-
[[PassengerStartupFile]]
|
156
|
-
==== PassengerStartupFile <filename>
|
157
|
-
|
158
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerstartupfile
|
159
|
-
|
160
|
-
==== PassengerRestartDir <directory>
|
161
|
-
|
162
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerrestartdir
|
163
|
-
|
164
|
-
[[PassengerSpawnMethod]]
|
165
|
-
==== PassengerSpawnMethod <string>
|
166
|
-
|
167
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerspawnmethod
|
168
|
-
|
169
|
-
[[PassengerLoadShellEnvvars]]
|
170
|
-
==== PassengerLoadShellEnvvars <on|off>
|
171
|
-
|
172
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerloadshellenvvars
|
173
|
-
|
174
|
-
[[PassengerRollingRestarts]]
|
175
|
-
==== PassengerRollingRestarts <on|off>
|
176
|
-
|
177
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerrollingrestarts
|
178
|
-
|
179
|
-
[[PassengerResistDeploymentErrors]]
|
180
|
-
==== PassengerResistDeploymentErrors <on|off>
|
181
|
-
|
182
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerresistdeploymenterrors
|
183
|
-
|
184
|
-
=== Security options ===
|
185
|
-
|
186
|
-
[[PassengerUserSwitching]]
|
187
|
-
==== PassengerUserSwitching <on|off> ====
|
188
|
-
|
189
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengeruserswitching
|
190
|
-
|
191
|
-
[[PassengerUser]]
|
192
|
-
==== PassengerUser <username> ====
|
193
|
-
|
194
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengeruser
|
195
|
-
|
196
|
-
[[PassengerGroup]]
|
197
|
-
==== PassengerGroup <group name> ====
|
198
|
-
|
199
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengergroup
|
200
|
-
|
201
|
-
[[PassengerDefaultUser]]
|
202
|
-
==== PassengerDefaultUser <username> ====
|
203
|
-
|
204
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerdefaultuser
|
205
|
-
|
206
|
-
[[PassengerDefaultGroup]]
|
207
|
-
==== PassengerDefaultGroup <group name> ====
|
208
|
-
|
209
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerdefaultgroup
|
210
|
-
|
211
|
-
==== PassengerShowVersionInHeader <on|off> ====
|
212
|
-
|
213
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengershowversioninheader
|
214
|
-
|
215
|
-
[[PassengerFriendlyErrorPages]]
|
216
|
-
==== PassengerFriendlyErrorPages <on|off> ====
|
217
|
-
|
218
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerfriendlyerrorpages
|
219
|
-
|
220
|
-
|
221
|
-
=== Resource control and optimization options ===
|
222
|
-
|
223
|
-
[[PassengerMaxPoolSize]]
|
224
|
-
==== PassengerMaxPoolSize <integer> ====
|
225
|
-
|
226
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermaxpoolsize
|
227
|
-
|
228
|
-
[[PassengerMinInstances]]
|
229
|
-
==== PassengerMinInstances <integer> ====
|
230
|
-
|
231
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermininstances
|
232
|
-
|
233
|
-
[[PassengerMaxInstances]]
|
234
|
-
==== PassengerMaxInstances <integer> ====
|
235
|
-
|
236
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermaxinstances
|
237
|
-
|
238
|
-
==== PassengerMaxInstancesPerApp <integer> ====
|
239
|
-
|
240
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermaxinstancesperapp
|
241
|
-
|
242
|
-
[[PassengerPoolIdleTime]]
|
243
|
-
==== PassengerPoolIdleTime <integer> ====
|
244
|
-
|
245
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerpoolidletime
|
246
|
-
|
247
|
-
[[PassengerMaxPreloaderIdleTime]]
|
248
|
-
==== PassengerMaxPreloaderIdleTime <integer> ====
|
249
|
-
|
250
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermaxpreloaderidletime
|
251
|
-
|
252
|
-
==== PassengerStartTimeout <seconds> ====
|
253
|
-
|
254
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerstarttimeout
|
255
|
-
|
256
|
-
[[PassengerConcurrencyModel]]
|
257
|
-
==== PassengerConcurrencyModel <process|thread> ====
|
258
|
-
|
259
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerconcurrencymodel
|
260
|
-
|
261
|
-
[[PassengerThreadCount]]
|
262
|
-
==== PassengerThreadCount <number> ====
|
263
|
-
|
264
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerthreadcount
|
265
|
-
|
266
|
-
[[PassengerMaxRequests]]
|
267
|
-
==== PassengerMaxRequests <integer> ====
|
268
|
-
|
269
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermaxrequests
|
270
|
-
|
271
|
-
[[PassengerMaxRequestTime]]
|
272
|
-
==== PassengerMaxRequestTime <seconds> ====
|
273
|
-
|
274
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermaxrequesttime
|
275
|
-
|
276
|
-
[[PassengerMemoryLimit]]
|
277
|
-
==== PassengerMemoryLimit <integer> ====
|
278
|
-
|
279
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermemorylimit
|
280
|
-
|
281
|
-
==== PassengerStatThrottleRate <integer> ====
|
282
|
-
|
283
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerstatthrottlerate
|
284
|
-
|
285
|
-
[[PassengerPreStart]]
|
286
|
-
==== PassengerPreStart <url> ====
|
287
|
-
|
288
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerprestart
|
289
|
-
|
290
|
-
[[PassengerHighPerformance]]
|
291
|
-
==== PassengerHighPerformance <on|off> ====
|
292
|
-
|
293
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerhighperformance
|
294
|
-
|
295
|
-
|
296
|
-
/////////////////////////////////////////
|
297
|
-
/////////////////////////////////////////
|
298
|
-
|
299
|
-
|
300
|
-
=== Connection handling options ===
|
301
|
-
|
302
|
-
[[PassengerBufferUpload]]
|
303
|
-
==== PassengerBufferUpload <on|off> ====
|
304
|
-
|
305
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerbufferupload
|
306
|
-
|
307
|
-
[[PassengerBufferResponse]]
|
308
|
-
==== PassengerBufferResponse <on|off> ====
|
309
|
-
|
310
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerbufferresponse
|
311
|
-
|
312
|
-
[[PassengerResponseBufferHighWatermark]]
|
313
|
-
==== PassengerResponseBufferHighWatermark <bytes>
|
314
|
-
|
315
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerresponsebufferhighwatermark
|
316
|
-
|
317
|
-
[[PassengerErrorOverride]]
|
318
|
-
==== PassengerErrorOverride <on|off> ====
|
319
|
-
|
320
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengererroroverride
|
321
|
-
|
322
|
-
[[PassengerMaxRequestQueueSize]]
|
323
|
-
==== PassengerMaxRequestQueueSize <number> ====
|
324
|
-
|
325
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengermaxrequestqueuesize
|
326
|
-
|
327
|
-
[[PassengerStickySessions]]
|
328
|
-
==== PassengerStickySessions <on|off>
|
329
|
-
|
330
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerstickysessions
|
331
|
-
|
332
|
-
[[PassengerStickySessionsCookieName]]
|
333
|
-
==== PassengerStickySessionsCookieName
|
334
|
-
|
335
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerstickysessionscookiename
|
336
|
-
|
337
|
-
|
338
|
-
=== Compatibility options ===
|
339
|
-
|
340
|
-
[[PassengerResolveSymlinksInDocumentRoot]]
|
341
|
-
==== PassengerResolveSymlinksInDocumentRoot <on|off> ====
|
342
|
-
|
343
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerresolvesymlinksindocumentroot
|
344
|
-
|
345
|
-
==== PassengerAllowEncodedSlashes <on|off> ====
|
346
|
-
|
347
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerallowencodedslashes
|
348
|
-
|
349
|
-
|
350
|
-
=== Logging and debugging options ===
|
351
|
-
|
352
|
-
[[PassengerLogLevel]]
|
353
|
-
==== PassengerLogLevel <integer> ====
|
354
|
-
|
355
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerloglevel
|
356
|
-
|
357
|
-
[[PassengerLogFile]]
|
358
|
-
==== PassengerLogFile <filename> ====
|
359
|
-
|
360
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerlogfile
|
361
|
-
|
362
|
-
==== PassengerFileDescriptorLogFile <filename>
|
363
|
-
|
364
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerfiledescriptorlogfile
|
365
|
-
|
366
|
-
==== PassengerDebugger <on|off> ====
|
367
|
-
|
368
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerdebugger
|
369
|
-
|
370
|
-
=== Advanced options
|
371
|
-
|
372
|
-
[[PassengerInstanceRegistryDir]]
|
373
|
-
==== PassengerInstanceRegistryDir <directory>
|
374
|
-
|
375
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerinstanceregistrydir
|
376
|
-
|
377
|
-
[[PassengerDataBufferDir]]
|
378
|
-
==== PassengerDataBufferDir <directory>
|
379
|
-
|
380
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerdatabufferdir
|
381
|
-
|
382
|
-
=== Deprecated or removed options ===
|
383
|
-
|
384
|
-
==== RailsRuby ====
|
385
|
-
|
386
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsruby
|
387
|
-
|
388
|
-
==== RailsBaseURI and RackBaseURI ====
|
389
|
-
|
390
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsbaseuri-rackbaseuri
|
391
|
-
|
392
|
-
==== RailsUserSwitching ====
|
393
|
-
|
394
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsuserswitching
|
395
|
-
|
396
|
-
==== RailsDefaultUser ====
|
397
|
-
|
398
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsdefaultuser
|
399
|
-
|
400
|
-
==== RailsAllowModRewrite ====
|
401
|
-
|
402
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsallowmodrewrite
|
403
|
-
|
404
|
-
==== RailsSpawnMethod ====
|
405
|
-
|
406
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsspawnmethod
|
407
|
-
|
408
|
-
==== RailsAutoDetect, RackAutoDetect and WsgiAutoDetect ====
|
409
|
-
|
410
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsautodetect-rackautodetect-and-wsgiautodetect
|
411
|
-
|
412
|
-
==== RailsAppSpawnerIdleTime ====
|
413
|
-
|
414
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsappspawneridletime
|
415
|
-
|
416
|
-
==== RailsFrameworkSpawnerIdleTime ====
|
417
|
-
|
418
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#railsframeworkspawneridletime
|
419
|
-
|
420
|
-
==== PassengerDebugLogFile ====
|
421
|
-
|
422
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/config/apache/reference/#passengerdebuglogfile
|
423
|
-
|
424
|
-
|
425
|
-
[[troubleshooting]]
|
426
|
-
== Troubleshooting
|
427
|
-
|
428
|
-
include::users_guide_snippets/troubleshooting/default.txt[]
|
429
|
-
|
430
|
-
=== OS X: The installer cannot locate MAMP's Apache
|
431
|
-
|
432
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/troubleshooting/?a=os-x-the-installer-cannot-locate-mamp-s-apache
|
433
|
-
|
434
|
-
=== Apache reports a "403 Forbidden" error
|
435
|
-
|
436
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/troubleshooting/?a=static-assets-such-as-images-and-stylesheets-aren-t-being-displayed
|
437
|
-
|
438
|
-
=== Static assets such as images and stylesheets aren't being displayed
|
439
|
-
|
440
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/troubleshooting/?a=static-assets-such-as-images-and-stylesheets-aren-t-being-displayed
|
441
|
-
|
442
|
-
[[apache_selinux_permissions]]
|
443
|
-
=== Apache cannot access my app's files because of SELinux errors
|
444
|
-
|
445
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/troubleshooting/?a=apache-cannot-access-my-app-s-files-because-of-selinux-errors
|
446
|
-
|
447
|
-
=== The application thinks its not on SSL even though it is
|
448
|
-
|
449
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/troubleshooting/?a=the-application-thinks-its-not-on-ssl-even-though-it-is
|
450
|
-
|
451
|
-
|
452
|
-
include::users_guide_snippets/troubleshooting/rails.txt[]
|
453
|
-
|
454
|
-
[[conflicting_apache_modules]]
|
455
|
-
=== Conflicting Apache modules ===
|
456
|
-
|
457
|
-
==== mod_userdir ====
|
458
|
-
|
459
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/troubleshooting/?a=conflicting-apache-modules
|
460
|
-
|
461
|
-
==== MultiViews (mod_negotiation) ====
|
462
|
-
|
463
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/troubleshooting/?a=conflicting-apache-modules
|
464
|
-
|
465
|
-
==== VirtualDocumentRoot ====
|
466
|
-
|
467
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/admin/apache/troubleshooting/?a=conflicting-apache-modules
|
468
|
-
|
469
|
-
|
470
|
-
== Analysis and system maintenance ==
|
471
|
-
|
472
|
-
include::users_guide_snippets/analysis_and_system_maintenance.txt[]
|
473
|
-
|
474
|
-
|
475
|
-
== Tips ==
|
476
|
-
|
477
|
-
include::users_guide_snippets/tips.txt[]
|
478
|
-
|
479
|
-
=== X-Sendfile support ===
|
480
|
-
|
481
|
-
Phusion Passenger does not provide X-Sendfile support by itself. Please install
|
482
|
-
link:http://tn123.ath.cx/mod_xsendfile/[mod_xsendfile] for X-Sendfile support.
|
483
|
-
|
484
|
-
=== Upload progress ===
|
485
|
-
|
486
|
-
Phusion Passenger does not provide upload progress support by itself. Please
|
487
|
-
try drogus's link:http://github.com/drogus/apache-upload-progress-module/tree/master[
|
488
|
-
Apache upload progress module] instead.
|
489
|
-
|
490
|
-
|
491
|
-
== Under the hood ==
|
492
|
-
Phusion Passenger hides a lot of complexity for the end user (i.e. the web server
|
493
|
-
system administrator), but sometimes it is desirable to know what is going on.
|
494
|
-
This section describes a few things that Phusion Passenger does under the hood.
|
495
|
-
|
496
|
-
include::users_guide_snippets/under_the_hood/page_caching_support.txt[]
|
497
|
-
include::users_guide_snippets/under_the_hood/relationship_with_ruby.txt[]
|
498
|
-
|
499
|
-
=== Static assets serving ===
|
500
|
-
Phusion Passenger accelerates serving of static files. This means that, if an URI
|
501
|
-
maps to a file that exists, then Phusion Passenger will let Apache serve that file
|
502
|
-
directly, without hitting the web application.
|
503
|
-
|
504
|
-
Phusion Passenger does all this without the need for any mod_rewrite rules. People
|
505
|
-
who are switching from an old Mongrel-based setup might have mod_rewrite rules such
|
506
|
-
as these:
|
507
|
-
|
508
|
-
------------------------------------------------------------
|
509
|
-
# Check whether this request has a corresponding file; if that
|
510
|
-
# exists, let Apache serve it, otherwise forward the request to
|
511
|
-
# Mongrel.
|
512
|
-
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
|
513
|
-
RewriteRule ^(.*)$ balancer://mongrel%{REQUEST_URI} [P,QSA,L]
|
514
|
-
------------------------------------------------------------
|
515
|
-
|
516
|
-
These kind of mod_rewrite rules are no longer required, and you can safely remove
|
517
|
-
them.
|
518
|
-
|
519
|
-
[[application_detection]]
|
520
|
-
=== How Phusion Passenger detects whether a virtual host is a web application ===
|
521
|
-
|
522
|
-
This documentation has moved. Please visit https://www.phusionpassenger.com/library/indepth/app_autodetection/apache/
|
523
|
-
|
524
|
-
|
525
|
-
include::users_guide_snippets/appendix_a_about.txt[]
|
526
|
-
|
527
|
-
include::users_guide_snippets/appendix_b_terminology.txt[]
|
528
|
-
|
529
|
-
include::users_guide_snippets/appendix_c_spawning_methods.txt[]
|
530
|
-
|
531
|
-
[[about_environment_variables]]
|
532
|
-
== Appendix D: About environment variables
|
533
|
-
|
534
|
-
include::users_guide_snippets/environment_variables.txt[]
|