passenger 4.0.60 → 5.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/.editorconfig +5 -0
- data/.travis.yml +3 -2
- data/CHANGELOG +31 -53
- data/CONTRIBUTING.md +4 -4
- data/CONTRIBUTORS +0 -1
- data/Gemfile +18 -0
- data/Gemfile.lock +41 -0
- data/Rakefile +16 -0
- data/bin/passenger +2 -2
- data/bin/passenger-install-apache2-module +12 -12
- data/bin/passenger-install-nginx-module +9 -14
- data/bin/passenger-status +125 -87
- data/build/agents.rb +112 -140
- data/build/apache2.rb +4 -9
- data/build/basics.rb +5 -3
- data/build/common_library.rb +1 -0
- data/build/cxx_tests.rb +69 -47
- data/build/debian.rb +4 -2
- data/build/documentation.rb +1 -0
- data/build/integration_tests.rb +28 -43
- data/build/misc.rb +0 -18
- data/build/nginx.rb +2 -6
- data/build/packaging.rb +33 -22
- data/build/preprocessor.rb +2 -4
- data/build/ruby_tests.rb +7 -26
- data/build/test_basics.rb +24 -25
- data/debian.template/control.template +2 -2
- data/debian.template/locations.ini.template +2 -3
- data/debian.template/passenger.install.template +2 -2
- data/debian.template/rules.template +1 -1
- data/dev/ci/run_jenkins.sh +0 -1
- data/dev/ci/run_rpm_tests.sh +3 -0
- data/dev/ci/run_travis.sh +63 -17
- data/dev/copy_boost_headers +22 -6
- data/dev/ruby_server.rb +244 -0
- data/dev/vagrant/provision.sh +3 -1
- data/doc/DebuggingAndStressTesting.md +3 -3
- data/doc/Design and Architecture.txt +5 -6
- data/doc/Packaging.txt.md +35 -6
- data/doc/ServerOptimizationGuide.txt.md +339 -0
- data/doc/Users guide Apache.idmap.txt +177 -187
- data/doc/Users guide Apache.txt +143 -219
- data/doc/Users guide Nginx.idmap.txt +166 -166
- data/doc/Users guide Nginx.txt +265 -223
- data/doc/Users guide Standalone.txt +3 -3
- data/doc/templates/markdown.html.erb +37 -6
- data/doc/users_guide_snippets/environment_variables.txt +1 -1
- data/doc/users_guide_snippets/support_information.txt +1 -1
- data/doc/users_guide_snippets/tips.txt +2 -2
- data/ext/apache2/Configuration.cpp +23 -81
- data/ext/apache2/Configuration.hpp +18 -92
- data/ext/apache2/ConfigurationCommands.cpp +64 -15
- data/ext/apache2/ConfigurationCommands.cpp.erb +8 -4
- data/ext/apache2/ConfigurationFields.hpp +12 -0
- data/ext/apache2/ConfigurationSetters.cpp +73 -1
- data/ext/apache2/ConfigurationSetters.cpp.erb +3 -2
- data/ext/apache2/CreateDirConfig.cpp +6 -0
- data/ext/apache2/DirectoryMapper.h +11 -6
- data/ext/apache2/Hooks.cpp +291 -408
- data/ext/apache2/MergeDirConfig.cpp +42 -0
- data/ext/apache2/SetHeaders.cpp +61 -16
- data/ext/apache2/SetHeaders.cpp.erb +9 -7
- data/ext/boost/container/allocator_traits.hpp +400 -0
- data/ext/boost/container/deque.hpp +2012 -0
- data/ext/boost/container/detail/adaptive_node_pool_impl.hpp +874 -0
- data/ext/boost/container/detail/advanced_insert_int.hpp +369 -0
- data/ext/boost/container/detail/algorithms.hpp +84 -0
- data/ext/boost/container/detail/allocation_type.hpp +54 -0
- data/ext/boost/container/detail/allocator_version_traits.hpp +163 -0
- data/ext/boost/container/detail/config_begin.hpp +49 -0
- data/ext/boost/container/detail/config_end.hpp +17 -0
- data/ext/boost/container/detail/destroyers.hpp +365 -0
- data/ext/boost/container/detail/flat_tree.hpp +1055 -0
- data/ext/boost/container/detail/function_detector.hpp +88 -0
- data/ext/boost/container/detail/iterators.hpp +611 -0
- data/ext/boost/container/detail/math_functions.hpp +113 -0
- data/ext/boost/container/detail/memory_util.hpp +83 -0
- data/ext/boost/container/detail/mpl.hpp +160 -0
- data/ext/boost/container/detail/multiallocation_chain.hpp +286 -0
- data/ext/boost/container/detail/node_alloc_holder.hpp +386 -0
- data/ext/boost/container/detail/node_pool_impl.hpp +365 -0
- data/ext/boost/container/detail/pair.hpp +354 -0
- data/ext/boost/container/detail/pool_common.hpp +52 -0
- data/ext/boost/container/detail/preprocessor.hpp +232 -0
- data/ext/boost/container/detail/transform_iterator.hpp +176 -0
- data/ext/boost/container/detail/tree.hpp +1134 -0
- data/ext/boost/container/detail/type_traits.hpp +210 -0
- data/ext/boost/container/detail/utilities.hpp +1141 -0
- data/ext/boost/container/detail/value_init.hpp +45 -0
- data/ext/boost/container/detail/variadic_templates_tools.hpp +153 -0
- data/ext/boost/container/detail/version_type.hpp +92 -0
- data/ext/boost/container/detail/workaround.hpp +44 -0
- data/ext/boost/container/flat_map.hpp +1674 -0
- data/ext/boost/container/flat_set.hpp +1408 -0
- data/ext/boost/container/list.hpp +1475 -0
- data/ext/boost/container/map.hpp +1508 -0
- data/ext/boost/container/scoped_allocator.hpp +1503 -0
- data/ext/boost/container/scoped_allocator_fwd.hpp +83 -0
- data/ext/boost/container/set.hpp +1280 -0
- data/ext/boost/container/slist.hpp +1706 -0
- data/ext/boost/container/stable_vector.hpp +1869 -0
- data/ext/boost/container/static_vector.hpp +1053 -0
- data/ext/boost/container/string.hpp +2856 -0
- data/ext/boost/container/throw_exception.hpp +110 -0
- data/ext/boost/container/vector.hpp +2671 -0
- data/ext/boost/detail/is_xxx.hpp +61 -0
- data/ext/boost/intrusive/any_hook.hpp +344 -0
- data/ext/boost/intrusive/avl_set.hpp +2528 -0
- data/ext/boost/intrusive/avl_set_hook.hpp +297 -0
- data/ext/boost/intrusive/avltree.hpp +1786 -0
- data/ext/boost/intrusive/avltree_algorithms.hpp +968 -0
- data/ext/boost/intrusive/bs_set_hook.hpp +296 -0
- data/ext/boost/intrusive/circular_list_algorithms.hpp +413 -0
- data/ext/boost/intrusive/circular_slist_algorithms.hpp +404 -0
- data/ext/boost/intrusive/derivation_value_traits.hpp +70 -0
- data/ext/boost/intrusive/detail/any_node_and_algorithms.hpp +297 -0
- data/ext/boost/intrusive/detail/assert.hpp +41 -0
- data/ext/boost/intrusive/detail/avltree_node.hpp +197 -0
- data/ext/boost/intrusive/detail/clear_on_destructor_base.hpp +36 -0
- data/ext/boost/intrusive/detail/common_slist_algorithms.hpp +102 -0
- data/ext/boost/intrusive/detail/config_begin.hpp +52 -0
- data/ext/boost/intrusive/detail/config_end.hpp +15 -0
- data/ext/boost/intrusive/detail/ebo_functor_holder.hpp +95 -0
- data/ext/boost/intrusive/detail/function_detector.hpp +88 -0
- data/ext/boost/intrusive/detail/generic_hook.hpp +209 -0
- data/ext/boost/intrusive/detail/has_member_function_callable_with.hpp +357 -0
- data/ext/boost/intrusive/detail/hashtable_node.hpp +249 -0
- data/ext/boost/intrusive/detail/is_stateful_value_traits.hpp +77 -0
- data/ext/boost/intrusive/detail/list_node.hpp +196 -0
- data/ext/boost/intrusive/detail/memory_util.hpp +288 -0
- data/ext/boost/intrusive/detail/mpl.hpp +383 -0
- data/ext/boost/intrusive/detail/parent_from_member.hpp +97 -0
- data/ext/boost/intrusive/detail/preprocessor.hpp +52 -0
- data/ext/boost/intrusive/detail/rbtree_node.hpp +201 -0
- data/ext/boost/intrusive/detail/slist_node.hpp +166 -0
- data/ext/boost/intrusive/detail/transform_iterator.hpp +173 -0
- data/ext/boost/intrusive/detail/tree_algorithms.hpp +1742 -0
- data/ext/boost/intrusive/detail/tree_node.hpp +199 -0
- data/ext/boost/intrusive/detail/utilities.hpp +858 -0
- data/ext/boost/intrusive/detail/workaround.hpp +22 -0
- data/ext/boost/intrusive/hashtable.hpp +3110 -0
- data/ext/boost/intrusive/intrusive_fwd.hpp +542 -0
- data/ext/boost/intrusive/linear_slist_algorithms.hpp +327 -0
- data/ext/boost/intrusive/link_mode.hpp +46 -0
- data/ext/boost/intrusive/list.hpp +1525 -0
- data/ext/boost/intrusive/list_hook.hpp +290 -0
- data/ext/boost/intrusive/member_value_traits.hpp +70 -0
- data/ext/boost/intrusive/options.hpp +810 -0
- data/ext/boost/intrusive/parent_from_member.hpp +42 -0
- data/ext/boost/intrusive/pointer_plus_bits.hpp +86 -0
- data/ext/boost/intrusive/pointer_traits.hpp +265 -0
- data/ext/boost/intrusive/priority_compare.hpp +39 -0
- data/ext/boost/intrusive/rbtree.hpp +1785 -0
- data/ext/boost/intrusive/rbtree_algorithms.hpp +934 -0
- data/ext/boost/intrusive/set.hpp +2554 -0
- data/ext/boost/intrusive/set_hook.hpp +300 -0
- data/ext/boost/intrusive/sg_set.hpp +2601 -0
- data/ext/boost/intrusive/sgtree.hpp +2009 -0
- data/ext/boost/intrusive/sgtree_algorithms.hpp +807 -0
- data/ext/boost/intrusive/slist.hpp +2219 -0
- data/ext/boost/intrusive/slist_hook.hpp +294 -0
- data/ext/boost/intrusive/splay_set.hpp +2575 -0
- data/ext/boost/intrusive/splay_set_hook.hpp +292 -0
- data/ext/boost/intrusive/splaytree.hpp +1784 -0
- data/ext/boost/intrusive/splaytree_algorithms.hpp +1008 -0
- data/ext/boost/intrusive/treap.hpp +1882 -0
- data/ext/boost/intrusive/treap_algorithms.hpp +919 -0
- data/ext/boost/intrusive/treap_set.hpp +2751 -0
- data/ext/boost/intrusive/trivial_value_traits.hpp +46 -0
- data/ext/boost/intrusive/unordered_set.hpp +2115 -0
- data/ext/boost/intrusive/unordered_set_hook.hpp +434 -0
- data/ext/boost/intrusive_ptr.hpp +18 -0
- data/ext/boost/math/common_factor_ct.hpp +180 -0
- data/ext/boost/math_fwd.hpp +108 -0
- data/ext/boost/move/detail/move_helpers.hpp +175 -0
- data/ext/boost/parameter.hpp +21 -0
- data/ext/boost/parameter/aux_/arg_list.hpp +459 -0
- data/ext/boost/parameter/aux_/cast.hpp +143 -0
- data/ext/boost/parameter/aux_/default.hpp +69 -0
- data/ext/boost/parameter/aux_/is_maybe.hpp +26 -0
- data/ext/boost/parameter/aux_/maybe.hpp +120 -0
- data/ext/boost/parameter/aux_/overloads.hpp +88 -0
- data/ext/boost/parameter/aux_/parameter_requirements.hpp +25 -0
- data/ext/boost/parameter/aux_/parenthesized_type.hpp +119 -0
- data/ext/boost/parameter/aux_/preprocessor/flatten.hpp +115 -0
- data/ext/boost/parameter/aux_/preprocessor/for_each.hpp +103 -0
- data/ext/boost/parameter/aux_/python/invoker.hpp +132 -0
- data/ext/boost/parameter/aux_/python/invoker_iterate.hpp +93 -0
- data/ext/boost/parameter/aux_/result_of0.hpp +36 -0
- data/ext/boost/parameter/aux_/set.hpp +67 -0
- data/ext/boost/parameter/aux_/tag.hpp +38 -0
- data/ext/boost/parameter/aux_/tagged_argument.hpp +188 -0
- data/ext/boost/parameter/aux_/template_keyword.hpp +47 -0
- data/ext/boost/parameter/aux_/unwrap_cv_reference.hpp +97 -0
- data/ext/boost/parameter/aux_/void.hpp +29 -0
- data/ext/boost/parameter/aux_/yesno.hpp +26 -0
- data/ext/boost/parameter/binding.hpp +106 -0
- data/ext/boost/parameter/config.hpp +14 -0
- data/ext/boost/parameter/keyword.hpp +152 -0
- data/ext/boost/parameter/macros.hpp +99 -0
- data/ext/boost/parameter/match.hpp +55 -0
- data/ext/boost/parameter/name.hpp +156 -0
- data/ext/boost/parameter/parameters.hpp +931 -0
- data/ext/boost/parameter/preprocessor.hpp +1178 -0
- data/ext/boost/parameter/python.hpp +735 -0
- data/ext/boost/parameter/value_type.hpp +108 -0
- data/ext/boost/pool/detail/for.m4 +107 -0
- data/ext/boost/pool/detail/guard.hpp +69 -0
- data/ext/boost/pool/detail/mutex.hpp +42 -0
- data/ext/boost/pool/detail/pool_construct.bat +24 -0
- data/ext/boost/pool/detail/pool_construct.ipp +852 -0
- data/ext/boost/pool/detail/pool_construct.m4 +84 -0
- data/ext/boost/pool/detail/pool_construct.sh +12 -0
- data/ext/boost/pool/detail/pool_construct_simple.bat +25 -0
- data/ext/boost/pool/detail/pool_construct_simple.ipp +43 -0
- data/ext/boost/pool/detail/pool_construct_simple.m4 +72 -0
- data/ext/boost/pool/detail/pool_construct_simple.sh +12 -0
- data/ext/boost/pool/object_pool.hpp +287 -0
- data/ext/boost/pool/pool.hpp +1024 -0
- data/ext/boost/pool/pool_alloc.hpp +488 -0
- data/ext/boost/pool/poolfwd.hpp +82 -0
- data/ext/boost/pool/simple_segregated_storage.hpp +377 -0
- data/ext/boost/pool/singleton_pool.hpp +251 -0
- data/ext/boost/preprocessor/arithmetic.hpp +25 -0
- data/ext/boost/preprocessor/arithmetic/detail/div_base.hpp +61 -0
- data/ext/boost/preprocessor/arithmetic/div.hpp +39 -0
- data/ext/boost/preprocessor/arithmetic/mod.hpp +39 -0
- data/ext/boost/preprocessor/arithmetic/mul.hpp +53 -0
- data/ext/boost/preprocessor/array.hpp +32 -0
- data/ext/boost/preprocessor/array/enum.hpp +33 -0
- data/ext/boost/preprocessor/array/insert.hpp +55 -0
- data/ext/boost/preprocessor/array/pop_back.hpp +37 -0
- data/ext/boost/preprocessor/array/pop_front.hpp +38 -0
- data/ext/boost/preprocessor/array/push_back.hpp +33 -0
- data/ext/boost/preprocessor/array/push_front.hpp +33 -0
- data/ext/boost/preprocessor/array/remove.hpp +54 -0
- data/ext/boost/preprocessor/array/replace.hpp +49 -0
- data/ext/boost/preprocessor/array/reverse.hpp +29 -0
- data/ext/boost/preprocessor/array/to_list.hpp +33 -0
- data/ext/boost/preprocessor/array/to_seq.hpp +33 -0
- data/ext/boost/preprocessor/array/to_tuple.hpp +22 -0
- data/ext/boost/preprocessor/assert_msg.hpp +17 -0
- data/ext/boost/preprocessor/comma.hpp +17 -0
- data/ext/boost/preprocessor/comparison.hpp +24 -0
- data/ext/boost/preprocessor/comparison/equal.hpp +34 -0
- data/ext/boost/preprocessor/comparison/greater.hpp +38 -0
- data/ext/boost/preprocessor/comparison/greater_equal.hpp +38 -0
- data/ext/boost/preprocessor/comparison/less.hpp +46 -0
- data/ext/boost/preprocessor/comparison/less_equal.hpp +39 -0
- data/ext/boost/preprocessor/comparison/not_equal.hpp +814 -0
- data/ext/boost/preprocessor/config/limits.hpp +30 -0
- data/ext/boost/preprocessor/control.hpp +22 -0
- data/ext/boost/preprocessor/control/deduce_d.hpp +22 -0
- data/ext/boost/preprocessor/control/detail/dmc/while.hpp +536 -0
- data/ext/boost/preprocessor/control/detail/edg/while.hpp +534 -0
- data/ext/boost/preprocessor/control/detail/msvc/while.hpp +277 -0
- data/ext/boost/preprocessor/control/expr_if.hpp +30 -0
- data/ext/boost/preprocessor/debug.hpp +18 -0
- data/ext/boost/preprocessor/debug/assert.hpp +44 -0
- data/ext/boost/preprocessor/debug/line.hpp +35 -0
- data/ext/boost/preprocessor/detail/dmc/auto_rec.hpp +286 -0
- data/ext/boost/preprocessor/detail/is_nullary.hpp +30 -0
- data/ext/boost/preprocessor/detail/is_unary.hpp +30 -0
- data/ext/boost/preprocessor/detail/null.hpp +17 -0
- data/ext/boost/preprocessor/detail/split.hpp +35 -0
- data/ext/boost/preprocessor/enum_params_with_defaults.hpp +17 -0
- data/ext/boost/preprocessor/enum_shifted.hpp +17 -0
- data/ext/boost/preprocessor/expand.hpp +17 -0
- data/ext/boost/preprocessor/expr_if.hpp +17 -0
- data/ext/boost/preprocessor/facilities.hpp +23 -0
- data/ext/boost/preprocessor/facilities/apply.hpp +34 -0
- data/ext/boost/preprocessor/facilities/expand.hpp +28 -0
- data/ext/boost/preprocessor/facilities/is_1.hpp +23 -0
- data/ext/boost/preprocessor/facilities/is_empty.hpp +43 -0
- data/ext/boost/preprocessor/facilities/is_empty_or_1.hpp +30 -0
- data/ext/boost/preprocessor/for.hpp +17 -0
- data/ext/boost/preprocessor/if.hpp +17 -0
- data/ext/boost/preprocessor/iteration.hpp +19 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/lower3.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/lower4.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/lower5.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/upper3.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/upper4.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/upper5.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/finish.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward3.hpp +1338 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward4.hpp +1338 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward5.hpp +1338 -0
- data/ext/boost/preprocessor/iteration/detail/iter/reverse2.hpp +1296 -0
- data/ext/boost/preprocessor/iteration/detail/iter/reverse3.hpp +1296 -0
- data/ext/boost/preprocessor/iteration/detail/iter/reverse4.hpp +1296 -0
- data/ext/boost/preprocessor/iteration/detail/iter/reverse5.hpp +1296 -0
- data/ext/boost/preprocessor/iteration/detail/local.hpp +812 -0
- data/ext/boost/preprocessor/iteration/detail/rlocal.hpp +782 -0
- data/ext/boost/preprocessor/iteration/detail/self.hpp +21 -0
- data/ext/boost/preprocessor/iteration/detail/start.hpp +99 -0
- data/ext/boost/preprocessor/iteration/local.hpp +26 -0
- data/ext/boost/preprocessor/iteration/self.hpp +19 -0
- data/ext/boost/preprocessor/library.hpp +36 -0
- data/ext/boost/preprocessor/limits.hpp +17 -0
- data/ext/boost/preprocessor/list.hpp +37 -0
- data/ext/boost/preprocessor/list/at.hpp +39 -0
- data/ext/boost/preprocessor/list/cat.hpp +42 -0
- data/ext/boost/preprocessor/list/detail/dmc/fold_left.hpp +279 -0
- data/ext/boost/preprocessor/list/detail/edg/fold_left.hpp +536 -0
- data/ext/boost/preprocessor/list/detail/edg/fold_right.hpp +794 -0
- data/ext/boost/preprocessor/list/enum.hpp +41 -0
- data/ext/boost/preprocessor/list/filter.hpp +54 -0
- data/ext/boost/preprocessor/list/first_n.hpp +58 -0
- data/ext/boost/preprocessor/list/for_each.hpp +49 -0
- data/ext/boost/preprocessor/list/for_each_product.hpp +141 -0
- data/ext/boost/preprocessor/list/rest_n.hpp +55 -0
- data/ext/boost/preprocessor/list/size.hpp +58 -0
- data/ext/boost/preprocessor/list/to_array.hpp +123 -0
- data/ext/boost/preprocessor/list/to_seq.hpp +32 -0
- data/ext/boost/preprocessor/list/to_tuple.hpp +38 -0
- data/ext/boost/preprocessor/logical.hpp +29 -0
- data/ext/boost/preprocessor/logical/bitnor.hpp +38 -0
- data/ext/boost/preprocessor/logical/bitor.hpp +38 -0
- data/ext/boost/preprocessor/logical/bitxor.hpp +38 -0
- data/ext/boost/preprocessor/logical/nor.hpp +30 -0
- data/ext/boost/preprocessor/logical/not.hpp +30 -0
- data/ext/boost/preprocessor/logical/or.hpp +30 -0
- data/ext/boost/preprocessor/logical/xor.hpp +30 -0
- data/ext/boost/preprocessor/max.hpp +17 -0
- data/ext/boost/preprocessor/min.hpp +17 -0
- data/ext/boost/preprocessor/punctuation.hpp +20 -0
- data/ext/boost/preprocessor/punctuation/paren_if.hpp +38 -0
- data/ext/boost/preprocessor/repeat_3rd.hpp +17 -0
- data/ext/boost/preprocessor/repeat_from_to.hpp +17 -0
- data/ext/boost/preprocessor/repeat_from_to_2nd.hpp +17 -0
- data/ext/boost/preprocessor/repeat_from_to_3rd.hpp +17 -0
- data/ext/boost/preprocessor/repetition.hpp +32 -0
- data/ext/boost/preprocessor/repetition/deduce_r.hpp +22 -0
- data/ext/boost/preprocessor/repetition/deduce_z.hpp +22 -0
- data/ext/boost/preprocessor/repetition/detail/dmc/for.hpp +536 -0
- data/ext/boost/preprocessor/repetition/detail/edg/for.hpp +534 -0
- data/ext/boost/preprocessor/repetition/detail/msvc/for.hpp +277 -0
- data/ext/boost/preprocessor/repetition/enum_params_with_defaults.hpp +24 -0
- data/ext/boost/preprocessor/repetition/enum_shifted.hpp +68 -0
- data/ext/boost/preprocessor/repetition/enum_shifted_binary_params.hpp +51 -0
- data/ext/boost/preprocessor/repetition/enum_trailing.hpp +63 -0
- data/ext/boost/preprocessor/repetition/enum_trailing_binary_params.hpp +53 -0
- data/ext/boost/preprocessor/selection.hpp +18 -0
- data/ext/boost/preprocessor/selection/max.hpp +39 -0
- data/ext/boost/preprocessor/selection/min.hpp +39 -0
- data/ext/boost/preprocessor/seq.hpp +43 -0
- data/ext/boost/preprocessor/seq/cat.hpp +49 -0
- data/ext/boost/preprocessor/seq/detail/binary_transform.hpp +40 -0
- data/ext/boost/preprocessor/seq/detail/split.hpp +284 -0
- data/ext/boost/preprocessor/seq/filter.hpp +54 -0
- data/ext/boost/preprocessor/seq/first_n.hpp +30 -0
- data/ext/boost/preprocessor/seq/fold_left.hpp +1070 -0
- data/ext/boost/preprocessor/seq/fold_right.hpp +288 -0
- data/ext/boost/preprocessor/seq/for_each.hpp +60 -0
- data/ext/boost/preprocessor/seq/for_each_product.hpp +126 -0
- data/ext/boost/preprocessor/seq/insert.hpp +28 -0
- data/ext/boost/preprocessor/seq/pop_back.hpp +29 -0
- data/ext/boost/preprocessor/seq/pop_front.hpp +27 -0
- data/ext/boost/preprocessor/seq/push_back.hpp +19 -0
- data/ext/boost/preprocessor/seq/push_front.hpp +19 -0
- data/ext/boost/preprocessor/seq/remove.hpp +29 -0
- data/ext/boost/preprocessor/seq/replace.hpp +29 -0
- data/ext/boost/preprocessor/seq/rest_n.hpp +30 -0
- data/ext/boost/preprocessor/seq/reverse.hpp +39 -0
- data/ext/boost/preprocessor/seq/subseq.hpp +28 -0
- data/ext/boost/preprocessor/seq/to_array.hpp +28 -0
- data/ext/boost/preprocessor/seq/to_list.hpp +29 -0
- data/ext/boost/preprocessor/seq/to_tuple.hpp +27 -0
- data/ext/boost/preprocessor/seq/transform.hpp +48 -0
- data/ext/boost/preprocessor/slot.hpp +17 -0
- data/ext/boost/preprocessor/slot/counter.hpp +25 -0
- data/ext/boost/preprocessor/slot/detail/counter.hpp +269 -0
- data/ext/boost/preprocessor/slot/detail/slot1.hpp +267 -0
- data/ext/boost/preprocessor/slot/detail/slot2.hpp +267 -0
- data/ext/boost/preprocessor/slot/detail/slot3.hpp +267 -0
- data/ext/boost/preprocessor/slot/detail/slot4.hpp +267 -0
- data/ext/boost/preprocessor/slot/detail/slot5.hpp +267 -0
- data/ext/boost/preprocessor/tuple.hpp +28 -0
- data/ext/boost/preprocessor/tuple/enum.hpp +22 -0
- data/ext/boost/preprocessor/tuple/reverse.hpp +114 -0
- data/ext/boost/preprocessor/tuple/size.hpp +28 -0
- data/ext/boost/preprocessor/tuple/to_array.hpp +37 -0
- data/ext/boost/preprocessor/tuple/to_seq.hpp +114 -0
- data/ext/boost/preprocessor/variadic.hpp +23 -0
- data/ext/boost/preprocessor/variadic/to_array.hpp +32 -0
- data/ext/boost/preprocessor/variadic/to_list.hpp +25 -0
- data/ext/boost/preprocessor/variadic/to_seq.hpp +25 -0
- data/ext/boost/preprocessor/variadic/to_tuple.hpp +24 -0
- data/ext/boost/preprocessor/while.hpp +17 -0
- data/ext/boost/preprocessor/wstringize.hpp +29 -0
- data/ext/boost/smart_ptr/intrusive_ptr.hpp +324 -0
- data/ext/common/AccountsDatabase.h +3 -4
- data/ext/common/AgentsStarter.cpp +12 -15
- data/ext/common/AgentsStarter.h +54 -120
- data/ext/common/ApplicationPool2/AppTypes.cpp +12 -5
- data/ext/common/ApplicationPool2/AppTypes.h +21 -14
- data/ext/common/ApplicationPool2/Common.h +36 -19
- data/ext/common/ApplicationPool2/DirectSpawner.h +15 -16
- data/ext/common/ApplicationPool2/DummySpawner.h +9 -8
- data/ext/common/ApplicationPool2/ErrorRenderer.h +1 -1
- data/ext/common/ApplicationPool2/Group.h +304 -171
- data/ext/common/ApplicationPool2/Implementation.cpp +234 -125
- data/ext/common/ApplicationPool2/Options.h +50 -62
- data/ext/common/ApplicationPool2/Pool.h +285 -189
- data/ext/common/ApplicationPool2/Process.h +126 -115
- data/ext/common/ApplicationPool2/Session.h +70 -30
- data/ext/common/ApplicationPool2/SmartSpawner.h +19 -18
- data/ext/common/ApplicationPool2/Socket.h +57 -43
- data/ext/common/ApplicationPool2/SpawnObject.h +83 -0
- data/ext/common/ApplicationPool2/Spawner.h +59 -38
- data/ext/common/ApplicationPool2/SpawnerFactory.h +8 -14
- data/ext/common/ApplicationPool2/SuperGroup.h +69 -40
- data/ext/common/BackgroundEventLoop.cpp +48 -1
- data/ext/common/BackgroundEventLoop.h +3 -1
- data/ext/common/Constants.h +30 -8
- data/ext/common/DataStructures/HashedStaticString.h +103 -0
- data/ext/common/DataStructures/LString.h +396 -0
- data/ext/common/DataStructures/StringKeyTable.h +588 -0
- data/ext/common/EventedMessageServer.h +1 -0
- data/ext/common/FileDescriptor.h +5 -0
- data/ext/common/InstanceDirectory.h +240 -0
- data/ext/common/Logging.cpp +38 -13
- data/ext/common/Logging.h +53 -22
- data/ext/common/MemoryKit/mbuf.cpp +413 -0
- data/ext/common/MemoryKit/mbuf.h +266 -0
- data/ext/common/MemoryKit/palloc.cpp +337 -0
- data/ext/common/MemoryKit/palloc.h +121 -0
- data/ext/common/ResourceLocator.h +62 -6
- data/ext/common/SafeLibev.h +4 -4
- data/ext/common/ServerKit/AcceptLoadBalancer.h +275 -0
- data/ext/common/ServerKit/Channel.h +747 -0
- data/ext/common/ServerKit/Client.h +166 -0
- data/ext/common/ServerKit/ClientRef.h +130 -0
- data/ext/common/ServerKit/Context.h +129 -0
- data/ext/common/ServerKit/Errors.h +103 -0
- data/ext/common/ServerKit/FdSinkChannel.h +206 -0
- data/ext/common/ServerKit/FdSourceChannel.h +230 -0
- data/ext/common/ServerKit/FileBufferedChannel.h +1399 -0
- data/ext/common/ServerKit/FileBufferedFdSinkChannel.h +228 -0
- data/ext/common/ServerKit/HeaderTable.h +472 -0
- data/ext/common/ServerKit/Hooks.h +79 -0
- data/ext/common/ServerKit/HttpChunkedBodyParser.h +289 -0
- data/ext/common/ServerKit/HttpChunkedBodyParserState.h +70 -0
- data/ext/common/ServerKit/HttpClient.h +94 -0
- data/ext/common/ServerKit/HttpHeaderParser.h +477 -0
- data/ext/common/ServerKit/HttpHeaderParserState.h +60 -0
- data/ext/common/ServerKit/HttpRequest.h +276 -0
- data/ext/common/ServerKit/HttpRequestRef.h +130 -0
- data/ext/common/ServerKit/HttpServer.h +1152 -0
- data/ext/common/ServerKit/Implementation.cpp +47 -0
- data/ext/common/ServerKit/Server.h +1040 -0
- data/ext/common/ServerKit/http_parser.cpp +2259 -0
- data/ext/common/ServerKit/http_parser.h +330 -0
- data/ext/common/StaticString.h +8 -0
- data/ext/common/Utils.cpp +14 -12
- data/ext/common/Utils.h +9 -103
- data/ext/common/Utils/BufferedIO.h +1 -0
- data/ext/common/Utils/CachedFileStat.hpp +1 -7
- data/ext/common/Utils/DateParsing.h +379 -0
- data/ext/common/Utils/FileChangeChecker.h +3 -9
- data/ext/common/Utils/Hasher.cpp +52 -0
- data/ext/common/Utils/Hasher.h +58 -0
- data/ext/common/Utils/IOUtils.cpp +62 -62
- data/ext/common/Utils/JsonUtils.h +21 -0
- data/ext/common/Utils/OptionParsing.h +75 -0
- data/ext/common/Utils/StrIntUtils.cpp +112 -19
- data/ext/common/Utils/StrIntUtils.h +52 -12
- data/ext/common/Utils/StrIntUtilsNoStrictAliasing.cpp +174 -0
- data/ext/common/Utils/VariantMap.h +18 -7
- data/ext/common/Utils/modp_b64.cpp +290 -0
- data/ext/common/Utils/modp_b64.h +241 -0
- data/ext/common/Utils/modp_b64_data.h +479 -0
- data/ext/common/Utils/sysqueue.h +811 -0
- data/ext/common/agents/Base.cpp +71 -98
- data/ext/common/agents/Base.h +11 -3
- data/ext/common/agents/HelperAgent/AdminServer.h +690 -0
- data/ext/common/agents/HelperAgent/Main.cpp +899 -487
- data/ext/common/agents/HelperAgent/OptionParser.h +311 -0
- data/ext/common/agents/HelperAgent/RequestHandler.h +315 -2548
- data/ext/common/agents/HelperAgent/RequestHandler/AppResponse.h +225 -0
- data/ext/common/agents/HelperAgent/RequestHandler/BufferBody.cpp +93 -0
- data/ext/common/agents/HelperAgent/RequestHandler/CheckoutSession.cpp +346 -0
- data/ext/common/agents/HelperAgent/RequestHandler/Client.h +54 -0
- data/ext/common/agents/HelperAgent/RequestHandler/ForwardResponse.cpp +846 -0
- data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +231 -0
- data/ext/common/agents/HelperAgent/RequestHandler/InitRequest.cpp +434 -0
- data/ext/common/agents/HelperAgent/RequestHandler/Request.h +149 -0
- data/ext/common/agents/HelperAgent/RequestHandler/SendRequest.cpp +887 -0
- data/ext/common/agents/HelperAgent/RequestHandler/TurboCaching.h +293 -0
- data/ext/common/agents/HelperAgent/RequestHandler/Utils.cpp +301 -0
- data/ext/common/agents/HelperAgent/ResponseCache.h +624 -0
- data/ext/common/agents/HelperAgent/SystemMetricsTool.cpp +21 -23
- data/ext/common/agents/LoggingAgent/AdminServer.h +369 -0
- data/ext/common/agents/LoggingAgent/LoggingServer.h +1 -0
- data/ext/common/agents/LoggingAgent/Main.cpp +422 -215
- data/ext/common/agents/LoggingAgent/OptionParser.h +167 -0
- data/ext/common/agents/LoggingAgent/RemoteSender.h +3 -3
- data/ext/common/agents/Main.cpp +107 -0
- data/ext/common/agents/SpawnPreparer/Main.cpp +207 -0
- data/ext/common/agents/TempDirToucher/Main.cpp +429 -0
- data/ext/common/agents/Watchdog/AdminServer.h +390 -0
- data/ext/common/agents/Watchdog/AgentWatcher.cpp +7 -5
- data/ext/common/agents/Watchdog/HelperAgentWatcher.cpp +18 -39
- data/ext/common/agents/Watchdog/InstanceDirToucher.cpp +116 -0
- data/ext/common/agents/Watchdog/LoggingAgentWatcher.cpp +13 -17
- data/ext/common/agents/Watchdog/Main.cpp +743 -202
- data/ext/libeio/eio.c +17 -0
- data/ext/libeio/eio.h +2 -0
- data/ext/nginx/CacheLocationConfig.c +177 -198
- data/ext/nginx/CacheLocationConfig.c.erb +35 -22
- data/ext/nginx/Configuration.c +402 -236
- data/ext/nginx/Configuration.h +12 -5
- data/ext/nginx/ConfigurationCommands.c +35 -15
- data/ext/nginx/ConfigurationCommands.c.erb +4 -4
- data/ext/nginx/ConfigurationFields.h +9 -5
- data/ext/nginx/ConfigurationFields.h.erb +3 -1
- data/ext/nginx/ContentHandler.c +393 -362
- data/ext/nginx/CreateLocationConfig.c +8 -4
- data/ext/nginx/CreateLocationConfig.c.erb +8 -3
- data/ext/nginx/MergeLocationConfig.c +36 -6
- data/ext/nginx/MergeLocationConfig.c.erb +42 -1
- data/ext/nginx/ngx_http_passenger_module.c +28 -15
- data/ext/oxt/detail/backtrace_disabled.hpp +2 -1
- data/ext/oxt/detail/backtrace_enabled.hpp +15 -2
- data/ext/oxt/implementation.cpp +92 -20
- data/ext/oxt/thread.hpp +5 -0
- data/ext/ruby/extconf.rb +3 -6
- data/ext/ruby/passenger_native_support.c +13 -40
- data/helper-scripts/download_binaries/extconf.rb +4 -4
- data/helper-scripts/meteor-loader.rb +12 -112
- data/helper-scripts/node-loader.js +3 -91
- data/helper-scripts/rack-loader.rb +13 -14
- data/helper-scripts/rack-preloader.rb +16 -17
- data/helper-scripts/wsgi-loader.py +11 -7
- data/lib/phusion_passenger.rb +100 -79
- data/lib/phusion_passenger/abstract_installer.rb +28 -3
- data/lib/phusion_passenger/admin_tools.rb +3 -3
- data/lib/phusion_passenger/admin_tools/instance.rb +207 -0
- data/lib/phusion_passenger/admin_tools/instance_registry.rb +98 -0
- data/lib/phusion_passenger/apache2/config_options.rb +72 -22
- data/lib/phusion_passenger/common_library.rb +79 -14
- data/lib/phusion_passenger/config/about_command.rb +17 -23
- data/lib/phusion_passenger/config/admin_command_command.rb +175 -0
- data/lib/phusion_passenger/config/agent_compiler.rb +170 -0
- data/lib/phusion_passenger/config/command.rb +1 -4
- data/lib/phusion_passenger/config/compile_agent_command.rb +102 -0
- data/lib/phusion_passenger/config/compile_nginx_engine_command.rb +112 -0
- data/lib/phusion_passenger/config/detach_process_command.rb +32 -10
- data/lib/phusion_passenger/config/download_agent_command.rb +285 -0
- data/lib/phusion_passenger/config/download_nginx_engine_command.rb +281 -0
- data/lib/phusion_passenger/config/install_agent_command.rb +174 -0
- data/lib/phusion_passenger/config/install_standalone_runtime_command.rb +231 -0
- data/lib/phusion_passenger/config/installation_utils.rb +241 -0
- data/lib/phusion_passenger/config/list_instances_command.rb +13 -25
- data/lib/phusion_passenger/config/main.rb +43 -14
- data/lib/phusion_passenger/config/nginx_engine_compiler.rb +337 -0
- data/lib/phusion_passenger/config/reopen_logs_command.rb +110 -0
- data/lib/phusion_passenger/config/restart_app_command.rb +61 -14
- data/lib/phusion_passenger/config/system_metrics_command.rb +2 -1
- data/lib/phusion_passenger/config/utils.rb +64 -39
- data/lib/phusion_passenger/config/validate_install_command.rb +2 -2
- data/lib/phusion_passenger/constants.rb +27 -6
- data/lib/phusion_passenger/debug_logging.rb +32 -15
- data/lib/phusion_passenger/loader_shared_helpers.rb +2 -5
- data/lib/phusion_passenger/message_client.rb +21 -22
- data/lib/phusion_passenger/native_support.rb +26 -31
- data/lib/phusion_passenger/nginx/config_options.rb +32 -19
- data/lib/phusion_passenger/packaging.rb +7 -3
- data/lib/phusion_passenger/platform_info/cxx_portability.rb +1 -2
- data/lib/phusion_passenger/platform_info/depcheck_specs/libs.rb +3 -4
- data/lib/phusion_passenger/platform_info/operating_system.rb +6 -6
- data/lib/phusion_passenger/preloader_shared_helpers.rb +2 -2
- data/lib/phusion_passenger/rack/out_of_band_gc.rb +2 -2
- data/lib/phusion_passenger/rack/thread_handler_extension.rb +168 -65
- data/lib/phusion_passenger/request_handler.rb +47 -82
- data/lib/phusion_passenger/request_handler/thread_handler.rb +46 -10
- data/lib/phusion_passenger/ruby_core_enhancements.rb +25 -77
- data/lib/phusion_passenger/ruby_core_io_enhancements.rb +108 -0
- data/lib/phusion_passenger/standalone/app_finder.rb +39 -59
- data/lib/phusion_passenger/standalone/command.rb +27 -275
- data/lib/phusion_passenger/standalone/command2.rb +292 -0
- data/lib/phusion_passenger/standalone/config_utils.rb +87 -0
- data/lib/phusion_passenger/standalone/control_utils.rb +88 -0
- data/lib/phusion_passenger/standalone/main.rb +69 -71
- data/lib/phusion_passenger/standalone/start2_command.rb +799 -0
- data/lib/phusion_passenger/standalone/start_command.rb +406 -467
- data/lib/phusion_passenger/standalone/start_command/builtin_engine.rb +167 -0
- data/lib/phusion_passenger/standalone/start_command/nginx_engine.rb +165 -0
- data/lib/phusion_passenger/standalone/status_command.rb +64 -23
- data/lib/phusion_passenger/standalone/stop_command.rb +69 -32
- data/lib/phusion_passenger/standalone/version_command.rb +1 -5
- data/lib/phusion_passenger/utils.rb +0 -4
- data/lib/phusion_passenger/utils/json.rb +70 -4
- data/lib/phusion_passenger/utils/progress_bar.rb +56 -0
- data/lib/phusion_passenger/utils/tee_input.rb +3 -3
- data/lib/phusion_passenger/utils/unseekable_socket.rb +30 -0
- data/packaging/rpm/nginx_spec/nginx.spec.template +4 -3
- data/packaging/rpm/passenger_spec/passenger.spec.template +6 -10
- data/packaging/rpm/setup-system +2 -1
- data/resources/oss-binaries.phusionpassenger.com.crt +208 -0
- data/resources/templates/config/agent_compiler/confirm_enable_optimizations.txt.erb +5 -0
- data/resources/templates/config/installation_utils/cannot_create_user_support_binaries_dir.txt.erb +15 -0
- data/resources/templates/config/installation_utils/download_tool_missing.txt.erb +7 -0
- data/resources/templates/config/installation_utils/passenger_not_installed_as_root.txt.erb +12 -0
- data/resources/templates/config/installation_utils/support_binaries_dir_not_writable_despite_running_as_root.txt.erb +13 -0
- data/resources/templates/config/installation_utils/unexpected_filesystem_problem.txt.erb +16 -0
- data/{packaging/debian/debian_specs/passenger/patches/series → resources/templates/config/installation_utils/user_support_binaries_dir_not_writable.txt.erb} +0 -0
- data/resources/templates/nginx/nginx_module_sources_not_available.txt.erb +2 -2
- data/resources/templates/standalone/config.erb +14 -16
- data/resources/templates/standalone/possible_solutions_for_download_and_extraction_problems.txt.erb +1 -1
- data/test/.rspec +1 -0
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +20 -17
- data/test/cxx/ApplicationPool2/OptionsTest.cpp +0 -14
- data/test/cxx/ApplicationPool2/PoolTest.cpp +113 -90
- data/test/cxx/ApplicationPool2/ProcessTest.cpp +18 -27
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +51 -53
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +55 -57
- data/test/cxx/BufferedIOTest.cpp +40 -40
- data/test/cxx/CxxTestMain.cpp +4 -22
- data/test/cxx/DataStructures/LStringTest.cpp +275 -0
- data/test/cxx/DataStructures/StringKeyTableTest.cpp +199 -0
- data/test/cxx/MemoryKit/MbufTest.cpp +213 -0
- data/test/cxx/MessageServerTest.cpp +62 -55
- data/test/cxx/RequestHandlerTest.cpp +26 -27
- data/test/cxx/ServerKit/ChannelTest.cpp +1467 -0
- data/test/cxx/ServerKit/FileBufferedChannelTest.cpp +817 -0
- data/test/cxx/ServerKit/HeaderTableTest.cpp +171 -0
- data/test/cxx/ServerKit/HttpServerTest.cpp +1503 -0
- data/test/cxx/ServerKit/ServerTest.cpp +408 -0
- data/test/cxx/TestSupport.cpp +51 -15
- data/test/cxx/TestSupport.h +31 -21
- data/test/cxx/UnionStationTest.cpp +121 -122
- data/test/cxx/UtilsTest.cpp +9 -33
- data/test/integration_tests/apache2_tests.rb +65 -27
- data/test/integration_tests/downloaded_binaries_tests.rb +30 -6
- data/test/integration_tests/native_packaging_spec.rb +32 -17
- data/test/integration_tests/nginx_tests.rb +28 -10
- data/test/integration_tests/shared/example_webapp_tests.rb +40 -27
- data/test/integration_tests/standalone_tests.rb +232 -169
- data/test/ruby/debug_logging_spec.rb +44 -40
- data/test/ruby/rails3.0/preloader_spec.rb +1 -1
- data/test/ruby/rails3.1/preloader_spec.rb +1 -1
- data/test/ruby/rails3.2/preloader_spec.rb +1 -1
- data/test/ruby/rails4.0/preloader_spec.rb +1 -1
- data/test/ruby/rails4.1/preloader_spec.rb +1 -1
- data/test/ruby/request_handler_spec.rb +62 -24
- data/test/ruby/shared/loader_sharedspec.rb +10 -9
- data/test/ruby/shared/rails/union_station_extensions_sharedspec.rb +23 -22
- data/test/ruby/spec_helper.rb +2 -11
- data/test/ruby/standalone/runtime_installer_spec.rb +15 -13
- data/test/ruby/union_station_spec.rb +45 -40
- data/test/ruby/utils/tee_input_spec.rb +5 -5
- data/test/ruby/utils_spec.rb +3 -39
- data/test/stub/apache2/httpd.conf.erb +5 -2
- data/test/stub/nginx/nginx.conf.erb +3 -1
- data/test/support/apache2_controller.rb +25 -25
- data/test/support/nginx_controller.rb +14 -14
- data/test/support/test_helper.rb +74 -75
- metadata +439 -643
- metadata.gz.asc +7 -7
- data/ext/common/MultiLibeio.cpp +0 -204
- data/ext/common/MultiLibeio.h +0 -67
- data/ext/common/ServerInstanceDir.h +0 -402
- data/ext/common/Utils/Base64.cpp +0 -143
- data/ext/common/Utils/Base64.h +0 -83
- data/ext/common/Utils/HttpHeaderBufferer.h +0 -184
- data/ext/common/Utils/PriorityQueue.h +0 -54
- data/ext/common/Utils/StreamBoyerMooreHorspool.h +0 -512
- data/ext/common/Utils/fib.c +0 -699
- data/ext/common/Utils/fib.h +0 -101
- data/ext/common/Utils/fibpriv.h +0 -67
- data/ext/common/agents/EnvPrinter.c +0 -16
- data/ext/common/agents/HelperAgent/AgentOptions.h +0 -109
- data/ext/common/agents/HelperAgent/FileBackedPipe.h +0 -732
- data/ext/common/agents/HelperAgent/RequestHandler.cpp +0 -294
- data/ext/common/agents/HelperAgent/ScgiRequestParser.h +0 -457
- data/ext/common/agents/LoggingAgent/AdminController.h +0 -96
- data/ext/common/agents/SpawnPreparer.cpp +0 -206
- data/ext/common/agents/TempDirToucher.c +0 -383
- data/ext/common/agents/Watchdog/ServerInstanceDirToucher.cpp +0 -116
- data/helper-scripts/classic-rails-loader.rb +0 -166
- data/helper-scripts/classic-rails-preloader.rb +0 -193
- data/lib/phusion_passenger/admin_tools/server_instance.rb +0 -339
- data/lib/phusion_passenger/classic_rails/cgi_fixed.rb +0 -68
- data/lib/phusion_passenger/classic_rails/thread_handler_extension.rb +0 -40
- data/lib/phusion_passenger/platform_info/openssl.rb +0 -61
- data/lib/phusion_passenger/standalone/config_file.rb +0 -119
- data/lib/phusion_passenger/standalone/help_command.rb +0 -57
- data/lib/phusion_passenger/standalone/runtime_installer.rb +0 -712
- data/lib/phusion_passenger/standalone/runtime_locator.rb +0 -170
- data/lib/phusion_passenger/standalone/utils.rb +0 -58
- data/lib/phusion_passenger/utils/tmpdir.rb +0 -69
- data/packaging/debian/LICENSE.md +0 -19
- data/packaging/debian/README.md +0 -320
- data/packaging/debian/Vagrantfile +0 -25
- data/packaging/debian/build +0 -210
- data/packaging/debian/debian_specs/nginx/changelog +0 -1989
- data/packaging/debian/debian_specs/nginx/compat.erb +0 -5
- data/packaging/debian/debian_specs/nginx/conf/fastcgi.conf +0 -25
- data/packaging/debian/debian_specs/nginx/conf/fastcgi_params +0 -24
- data/packaging/debian/debian_specs/nginx/conf/koi-utf +0 -109
- data/packaging/debian/debian_specs/nginx/conf/koi-win +0 -103
- data/packaging/debian/debian_specs/nginx/conf/mime.types +0 -89
- data/packaging/debian/debian_specs/nginx/conf/nginx.conf.erb +0 -97
- data/packaging/debian/debian_specs/nginx/conf/proxy_params +0 -4
- data/packaging/debian/debian_specs/nginx/conf/scgi_params +0 -16
- data/packaging/debian/debian_specs/nginx/conf/sites-available/default.erb +0 -93
- data/packaging/debian/debian_specs/nginx/conf/snippets/fastcgi-php.conf +0 -13
- data/packaging/debian/debian_specs/nginx/conf/snippets/snakeoil.conf +0 -5
- data/packaging/debian/debian_specs/nginx/conf/uwsgi_params +0 -16
- data/packaging/debian/debian_specs/nginx/conf/win-utf +0 -125
- data/packaging/debian/debian_specs/nginx/control.erb +0 -226
- data/packaging/debian/debian_specs/nginx/copyright +0 -196
- data/packaging/debian/debian_specs/nginx/debian-full.lintian-overrides +0 -1
- data/packaging/debian/debian_specs/nginx/gbp.conf +0 -2
- data/packaging/debian/debian_specs/nginx/help/docs/fcgiwrap +0 -14
- data/packaging/debian/debian_specs/nginx/help/docs/php +0 -119
- data/packaging/debian/debian_specs/nginx/help/docs/support-irc +0 -28
- data/packaging/debian/debian_specs/nginx/help/docs/upstream +0 -51
- data/packaging/debian/debian_specs/nginx/help/examples/drupal +0 -114
- data/packaging/debian/debian_specs/nginx/help/examples/http +0 -59
- data/packaging/debian/debian_specs/nginx/help/examples/mail +0 -30
- data/packaging/debian/debian_specs/nginx/help/examples/mailman +0 -59
- data/packaging/debian/debian_specs/nginx/help/examples/nginx.conf +0 -34
- data/packaging/debian/debian_specs/nginx/help/examples/nginx_modsite +0 -162
- data/packaging/debian/debian_specs/nginx/help/examples/virtual_hosts +0 -155
- data/packaging/debian/debian_specs/nginx/help/examples/wordpress +0 -74
- data/packaging/debian/debian_specs/nginx/helpers.rb +0 -41
- data/packaging/debian/debian_specs/nginx/index-debian.html.in +0 -32
- data/packaging/debian/debian_specs/nginx/index-ubuntu.html.in +0 -32
- data/packaging/debian/debian_specs/nginx/index.html.erb +0 -10
- data/packaging/debian/debian_specs/nginx/modules/README.Modules-versions +0 -65
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/README.markdown +0 -510
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/config +0 -5
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/doc/HttpHeadersMoreModule.wiki +0 -395
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ddebug.h +0 -119
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.c +0 -348
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.h +0 -80
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.c +0 -826
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.h +0 -26
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.c +0 -716
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.h +0 -26
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.c +0 -380
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.h +0 -52
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/util/build.sh +0 -32
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/valgrind.suppress +0 -215
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ChangeLog +0 -35
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/LICENSE +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/README.md +0 -93
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/config +0 -4
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ngx_http_auth_pam_module.c +0 -462
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/CHANGES +0 -66
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/LICENSE +0 -26
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/README.md +0 -171
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/TODO.md +0 -7
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/config +0 -21
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/ngx_cache_purge_module.c +0 -1803
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/README +0 -29
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/config +0 -9
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/ngx_http_dav_ext_module.c +0 -824
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README +0 -139
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README_AUTO_LIB +0 -395
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/TODO +0 -1
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/array +0 -10
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/palloc +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/build +0 -597
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_replacements +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_types +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_args +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_locs +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_macros +0 -35
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/contexts +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/header_files +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/headers +0 -4
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/module_dependencies +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/modules_optional +0 -15
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/prefixes +0 -2
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/array.h +0 -7
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_cmd_basic.h +0 -43
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_merge.h +0 -78
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/palloc.h +0 -6
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/text/autogen +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/config +0 -49
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/action_macros +0 -63
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/conf_cmds +0 -62
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/modules/set_var +0 -124
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/patches/more_logging_info +0 -48
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/upstream/list +0 -45
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/README +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/config +0 -4
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/ngx_http_set_var_examples_module.c +0 -136
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/ngx_auto_lib_core +0 -797
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/CHANGES +0 -17
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/LICENSE +0 -24
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_array.h +0 -113
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_basic.h +0 -2203
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_extra.h +0 -5423
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_merge.h +0 -227
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.c +0 -72
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.h +0 -98
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_includes.h +0 -66
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_palloc.h +0 -112
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/auto_config +0 -16
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/expose_rewrite_functions +0 -291
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/rewrite_phase_handler +0 -19
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/md5.h +0 -117
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/murmurhash2.c +0 -77
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/sha.h +0 -200
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.c +0 -155
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.h +0 -58
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.c +0 -43
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.h +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.c +0 -129
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.h +0 -30
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.c +0 -192
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.h +0 -21
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.c +0 -396
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.h +0 -44
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.c +0 -72
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.h +0 -171
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.c +0 -57
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.h +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.c +0 -82
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.h +0 -45
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.c +0 -138
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.h +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http_headers.h +0 -35
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.c +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.h +0 -165
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_parse.h +0 -67
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.c +0 -583
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.c +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.h +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.c +0 -215
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.h +0 -7
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.c +0 -103
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.h +0 -26
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.c +0 -602
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.h +0 -44
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.c +0 -434
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.h +0 -37
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string_util.h +0 -14
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.c +0 -205
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.h +0 -27
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.c +0 -45
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.h +0 -6
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/LICENSE +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/README.markdown +0 -1850
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/config +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/doc/HttpEchoModule.wiki +0 -1558
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ddebug.h +0 -109
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.c +0 -344
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.h +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.c +0 -282
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.h +0 -15
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.c +0 -183
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.h +0 -16
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.c +0 -429
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.h +0 -18
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.c +0 -178
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.h +0 -13
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.c +0 -667
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.h +0 -137
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.c +0 -452
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.h +0 -31
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.c +0 -208
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.h +0 -16
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.c +0 -788
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.h +0 -19
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.c +0 -96
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.h +0 -13
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.c +0 -298
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.h +0 -58
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.c +0 -110
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.h +0 -9
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/build.sh +0 -45
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/releng +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/wiki2pod.pl +0 -131
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/valgrind.suppress +0 -38
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/LICENCE +0 -24
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/README +0 -206
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/changelog.txt +0 -54
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/config +0 -26
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/protocol.txt +0 -191
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.c +0 -59
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.h +0 -73
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.c +0 -783
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.h +0 -31
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module_setup.c +0 -361
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_types.h +0 -120
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.c +0 -1180
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.h +0 -1
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.c +0 -146
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.h +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_store.h +0 -51
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.c +0 -178
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.h +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.c +0 -246
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.h +0 -9
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/Changes +0 -51
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/README.markdown +0 -6954
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/config +0 -363
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/doc/HttpLuaModule.wiki +0 -5898
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/dtrace/ngx_lua_provider.d +0 -61
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/Makefile +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/lib/RecvUntil.pm +0 -138
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/t/sanity.t +0 -140
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/api/ngx_http_lua_api.h +0 -52
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ddebug.h +0 -82
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.c +0 -377
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_api.c +0 -77
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.c +0 -537
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.c +0 -632
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.h +0 -31
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.c +0 -296
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.h +0 -24
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.c +0 -175
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.c +0 -887
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_common.h +0 -478
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.c +0 -67
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.h +0 -19
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.c +0 -148
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.c +0 -369
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.h +0 -26
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.c +0 -483
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.c +0 -379
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.c +0 -216
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.c +0 -1081
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.h +0 -56
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.c +0 -58
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.h +0 -33
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.c +0 -302
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.h +0 -29
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.c +0 -1370
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.c +0 -782
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.c +0 -625
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.c +0 -42
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.c +0 -320
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.h +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.c +0 -300
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.c +0 -227
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.c +0 -252
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_module.c +0 -924
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.c +0 -184
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.h +0 -21
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.c +0 -794
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.h +0 -28
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.c +0 -106
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.c +0 -94
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.h +0 -13
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_probe.h +0 -85
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.c +0 -2468
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.c +0 -1169
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.c +0 -252
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.h +0 -19
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.c +0 -351
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.c +0 -538
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.h +0 -86
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.c +0 -216
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.h +0 -15
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.c +0 -1844
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.h +0 -52
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.c +0 -191
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.c +0 -5314
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.h +0 -156
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.c +0 -1624
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.h +0 -56
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.c +0 -704
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.c +0 -1741
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.h +0 -46
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.c +0 -278
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.h +0 -21
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.c +0 -661
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.c +0 -110
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.c +0 -283
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.h +0 -36
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.c +0 -3972
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.h +0 -423
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.c +0 -499
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.c +0 -64
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.h +0 -17
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/tapset/ngx_lua.stp +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build.sh +0 -39
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build2.sh +0 -55
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/fix-comments +0 -27
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/gdbinit +0 -415
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/ngx-links +0 -62
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/reindex +0 -64
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/releng +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/retab +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/revim +0 -102
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/run_test.sh +0 -10
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/update-readme.sh +0 -4
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/valgrind.suppress +0 -144
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/CHANGES +0 -107
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/LICENSE +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/Makefile +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/README +0 -329
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/config +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/ngx_http_uploadprogress_module.c +0 -1774
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/README +0 -53
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/config +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/ngx_http_upstream_fair_module.c +0 -1356
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/CHANGELOG.md +0 -37
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/HACKING.md +0 -24
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/LICENSE +0 -20
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/README.rst +0 -182
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/config +0 -8
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/nginx-0.6-support.patch +0 -23
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/ngx_http_fancyindex_module.c +0 -1305
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.awk +0 -52
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.h +0 -103
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.html +0 -102
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/CHANGES +0 -37
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/README +0 -141
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/config +0 -3
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.google_code_home_page.wiki +0 -120
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.html +0 -199
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.wiki +0 -123
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/ngx_http_subs_filter_module.c +0 -1298
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/README +0 -275
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/AutoInstall.pm +0 -820
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install.pm +0 -470
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/AutoInstall.pm +0 -82
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Base.pm +0 -83
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Can.pm +0 -81
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Fetch.pm +0 -93
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Include.pm +0 -34
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Makefile.pm +0 -415
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Metadata.pm +0 -716
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/TestBase.pm +0 -29
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Win32.pm +0 -64
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/WriteAll.pm +0 -63
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Spiffy.pm +0 -539
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base.pm +0 -682
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base/Filter.pm +0 -341
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder.pm +0 -1413
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder/Module.pm +0 -81
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/More.pm +0 -735
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx.pm +0 -315
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/LWP.pm +0 -524
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Socket.pm +0 -1749
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Util.pm +0 -874
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs.t +0 -136
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_capture.t +0 -32
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_fix_string.t +0 -32
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_regex.t +0 -108
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_types.t +0 -59
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/test.sh +0 -5
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/update-readme.sh +0 -7
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2google_code_homepage.pl +0 -29
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2pod.pl +0 -129
- data/packaging/debian/debian_specs/nginx/nginx-common.NEWS +0 -135
- data/packaging/debian/debian_specs/nginx/nginx-common.README.Debian +0 -45
- data/packaging/debian/debian_specs/nginx/nginx-common.dirs.erb +0 -32
- data/packaging/debian/debian_specs/nginx/nginx-common.install +0 -3
- data/packaging/debian/debian_specs/nginx/nginx-common.lintian-overrides +0 -2
- data/packaging/debian/debian_specs/nginx/nginx-common.manpages +0 -1
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.default +0 -10
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.init.erb +0 -214
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.logrotate +0 -18
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.service.erb +0 -37
- data/packaging/debian/debian_specs/nginx/nginx-common.postinst.erb +0 -66
- data/packaging/debian/debian_specs/nginx/nginx-common.postrm.erb +0 -46
- data/packaging/debian/debian_specs/nginx/nginx-common.preinst +0 -47
- data/packaging/debian/debian_specs/nginx/nginx-common.prerm.erb +0 -28
- data/packaging/debian/debian_specs/nginx/nginx-doc.docs +0 -2
- data/packaging/debian/debian_specs/nginx/nginx-doc.examples +0 -1
- data/packaging/debian/debian_specs/nginx/nginx-extras.install.erb +0 -17
- data/packaging/debian/debian_specs/nginx/nginx-extras.lintian-overrides +0 -1
- data/packaging/debian/debian_specs/nginx/nginx-extras.postinst.erb +0 -44
- data/packaging/debian/debian_specs/nginx/nginx-extras.prerm +0 -22
- data/packaging/debian/debian_specs/nginx/nginx.1 +0 -47
- data/packaging/debian/debian_specs/nginx/patches/perl-use-dpkg-buildflags.patch +0 -23
- data/packaging/debian/debian_specs/nginx/patches/series +0 -1
- data/packaging/debian/debian_specs/nginx/rules.erb +0 -185
- data/packaging/debian/debian_specs/nginx/source/format +0 -1
- data/packaging/debian/debian_specs/nginx/tests/control +0 -4
- data/packaging/debian/debian_specs/nginx/ufw/nginx +0 -14
- data/packaging/debian/debian_specs/nginx/upstream/signing-key.asc +0 -34
- data/packaging/debian/debian_specs/nginx/watch +0 -3
- data/packaging/debian/debian_specs/passenger/README.Debian +0 -12
- data/packaging/debian/debian_specs/passenger/changelog +0 -316
- data/packaging/debian/debian_specs/passenger/compat +0 -1
- data/packaging/debian/debian_specs/passenger/control.erb +0 -123
- data/packaging/debian/debian_specs/passenger/copyright +0 -385
- data/packaging/debian/debian_specs/passenger/helpers.rb +0 -24
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.install +0 -3
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.postinst +0 -36
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.prerm +0 -15
- data/packaging/debian/debian_specs/passenger/locations.ini.erb +0 -14
- data/packaging/debian/debian_specs/passenger/passenger-dev.install.erb +0 -3
- data/packaging/debian/debian_specs/passenger/passenger-doc.install.erb +0 -2
- data/packaging/debian/debian_specs/passenger/passenger.conf +0 -6
- data/packaging/debian/debian_specs/passenger/passenger.docs +0 -4
- data/packaging/debian/debian_specs/passenger/passenger.install.erb +0 -16
- data/packaging/debian/debian_specs/passenger/passenger.load +0 -3
- data/packaging/debian/debian_specs/passenger/passenger.manpages +0 -3
- data/packaging/debian/debian_specs/passenger/passenger_free_ruby.c +0 -29
- data/packaging/debian/debian_specs/passenger/passenger_ruby_utils.c +0 -54
- data/packaging/debian/debian_specs/passenger/passenger_system_ruby.c.erb +0 -37
- data/packaging/debian/debian_specs/passenger/rules.erb +0 -84
- data/packaging/debian/debian_specs/passenger/source/format +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/README.Debian +0 -12
- data/packaging/debian/debian_specs/passenger_enterprise/changelog +0 -316
- data/packaging/debian/debian_specs/passenger_enterprise/compat +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/control.erb +0 -123
- data/packaging/debian/debian_specs/passenger_enterprise/copyright +0 -385
- data/packaging/debian/debian_specs/passenger_enterprise/helpers.rb +0 -2
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.install +0 -3
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.postinst +0 -36
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.prerm +0 -15
- data/packaging/debian/debian_specs/passenger_enterprise/locations.ini.erb +0 -14
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-dev.install.erb +0 -3
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-doc.install.erb +0 -2
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.docs +0 -4
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.install.erb +0 -14
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.manpages +0 -3
- data/packaging/debian/debian_specs/passenger_enterprise/passenger.conf +0 -6
- data/packaging/debian/debian_specs/passenger_enterprise/passenger.load +0 -3
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_free_ruby.c.erb +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_ruby_utils.c.erb +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_system_ruby.c.erb +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/patches/series +0 -0
- data/packaging/debian/debian_specs/passenger_enterprise/rules.erb +0 -84
- data/packaging/debian/debian_specs/passenger_enterprise/source/format +0 -1
- data/packaging/debian/docker_images/Makefile +0 -38
- data/packaging/debian/docker_images/buildbox/CONTAINER_VERSION.txt +0 -0
- data/packaging/debian/docker_images/buildbox/Dockerfile +0 -3
- data/packaging/debian/docker_images/buildbox/Gemfile +0 -9
- data/packaging/debian/docker_images/buildbox/Gemfile.lock +0 -42
- data/packaging/debian/docker_images/buildbox/install.sh +0 -85
- data/packaging/debian/docker_images/buildbox/pbuilderrc +0 -4
- data/packaging/debian/docker_images/buildbox/sudoers.conf +0 -6
- data/packaging/debian/docker_images/setup-buildbox-docker-image +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-6 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-7 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-8 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-12.04 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-14.04 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.04 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.10 +0 -7
- data/packaging/debian/docker_images/testbox-debian-6/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-debian-6/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-debian-6/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-debian-6/argparse.py +0 -2374
- data/packaging/debian/docker_images/testbox-debian-6/install.sh +0 -78
- data/packaging/debian/docker_images/testbox-debian-7/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-debian-7/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-debian-7/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-debian-7/install.sh +0 -71
- data/packaging/debian/docker_images/testbox-debian-8/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-debian-8/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-debian-8/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-debian-8/install.sh +0 -70
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/install.sh +0 -69
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/install.sh +0 -69
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/install.sh +0 -69
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/install.sh +0 -69
- data/packaging/debian/internal/build/Rakefile +0 -235
- data/packaging/debian/internal/build/build-passenger-orig-tarball.sh +0 -76
- data/packaging/debian/internal/build/build-source-package.rb +0 -121
- data/packaging/debian/internal/build/download-nginx-orig-tarball.sh +0 -17
- data/packaging/debian/internal/build/rakefile_support.rb +0 -96
- data/packaging/debian/internal/build/setup-environment-essentials.sh +0 -15
- data/packaging/debian/internal/build/setup-environment.sh +0 -29
- data/packaging/debian/internal/lib/distro_info.rb +0 -82
- data/packaging/debian/internal/lib/distro_info.sh +0 -303
- data/packaging/debian/internal/lib/distro_info.sh.erb +0 -65
- data/packaging/debian/internal/lib/library.sh +0 -83
- data/packaging/debian/internal/lib/preprocessor.rb +0 -173
- data/packaging/debian/internal/lib/tracking.rb +0 -95
- data/packaging/debian/internal/lib/tracking_category.rb +0 -45
- data/packaging/debian/internal/lib/tracking_database.rb +0 -132
- data/packaging/debian/internal/lib/tracking_task.rb +0 -148
- data/packaging/debian/internal/lib/utils.rb +0 -78
- data/packaging/debian/internal/publish/Rakefile +0 -97
- data/packaging/debian/internal/publish/oss-binaries.phusionpassenger.com-fingerprint.txt +0 -1
- data/packaging/debian/internal/publish/packagecloud_fingerprint.txt +0 -1
- data/packaging/debian/internal/publish/passenger_website_fingerprint.txt +0 -1
- data/packaging/debian/internal/publish/preinit.sh +0 -7
- data/packaging/debian/internal/publish/rakefile_support.rb +0 -183
- data/packaging/debian/internal/scripts/gpg_noninteractive/gpg +0 -11
- data/packaging/debian/internal/scripts/initccache.sh +0 -35
- data/packaging/debian/internal/scripts/inituidgid.sh +0 -19
- data/packaging/debian/internal/scripts/my_init +0 -340
- data/packaging/debian/internal/scripts/pin_certificates +0 -34
- data/packaging/debian/internal/scripts/regen_distro_info_script.sh +0 -3
- data/packaging/debian/internal/scripts/setup-vagrant.sh +0 -12
- data/packaging/debian/internal/scripts/setuser +0 -31
- data/packaging/debian/internal/shell/initpbuilder.sh +0 -3
- data/packaging/debian/internal/shell/preinit.sh +0 -28
- data/packaging/debian/internal/shell/sudoers.conf +0 -1
- data/packaging/debian/internal/test/apache/apache-24.conf +0 -5
- data/packaging/debian/internal/test/apache/apache-pre-24.conf +0 -4
- data/packaging/debian/internal/test/apache/vhost.conf +0 -17
- data/packaging/debian/internal/test/misc/config.json +0 -15
- data/packaging/debian/internal/test/misc/hosts.conf +0 -4
- data/packaging/debian/internal/test/misc/init.sh +0 -25
- data/packaging/debian/internal/test/misc/nodejs_test_app.js +0 -6
- data/packaging/debian/internal/test/misc/python_test_app.py +0 -3
- data/packaging/debian/internal/test/misc/ruby_test_app.rb +0 -5
- data/packaging/debian/internal/test/misc/test_support.rb +0 -61
- data/packaging/debian/internal/test/nginx/vhost.conf +0 -23
- data/packaging/debian/internal/test/system_web_server_test.rb +0 -126
- data/packaging/debian/internal/test/test.sh +0 -141
- data/packaging/debian/jenkins/publish/clear_caches.rb +0 -48
- data/packaging/debian/jenkins/publish/publish.sh +0 -69
- data/packaging/debian/jenkins/test/test.sh +0 -63
- data/packaging/debian/passenger_apt_automation.sublime-project +0 -14
- data/packaging/debian/publish +0 -172
- data/packaging/debian/shell +0 -116
- data/packaging/debian/test +0 -142
- data/packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-gcc47-include-sys_types.patch +0 -45
- data/test/cxx/Base64Test.cpp +0 -50
- data/test/cxx/FileBackedPipeTest.cpp +0 -626
- data/test/cxx/HttpHeaderBuffererTest.cpp +0 -257
- data/test/cxx/ScgiRequestParserTest.cpp +0 -423
- data/test/cxx/ServerInstanceDirTest.cpp +0 -175
- data/test/ruby/admin_tools_spec.rb +0 -360
- data/test/ruby/classic_rails/loader_spec.rb +0 -46
- data/test/ruby/classic_rails/preloader_spec.rb +0 -52
- data/test/ruby/standalone/runtime_locator_spec.rb +0 -214
- data/test/stub/rails2.3/Rakefile +0 -10
- data/test/stub/rails2.3/app/controllers/application_controller.rb +0 -10
- data/test/stub/rails2.3/app/controllers/bar_controller_1.rb +0 -5
- data/test/stub/rails2.3/app/controllers/bar_controller_2.rb +0 -5
- data/test/stub/rails2.3/app/controllers/foo_controller.rb +0 -21
- data/test/stub/rails2.3/app/helpers/application_helper.rb +0 -3
- data/test/stub/rails2.3/app/helpers/bar_helper.rb +0 -2
- data/test/stub/rails2.3/app/helpers/foo_helper.rb +0 -2
- data/test/stub/rails2.3/config/boot.rb +0 -110
- data/test/stub/rails2.3/config/database.yml +0 -19
- data/test/stub/rails2.3/config/environment.rb +0 -62
- data/test/stub/rails2.3/config/environments/development.rb +0 -17
- data/test/stub/rails2.3/config/environments/production.rb +0 -18
- data/test/stub/rails2.3/config/environments/staging.rb +0 -18
- data/test/stub/rails2.3/config/initializers/inflections.rb +0 -10
- data/test/stub/rails2.3/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails2.3/config/routes.rb +0 -35
- data/test/stub/rails2.3/log/.gitignore +0 -1
- data/test/stub/rails2.3/public/.gitignore +0 -1
- data/test/stub/rails2.3/script/about +0 -3
- data/test/stub/rails2.3/script/console +0 -3
- data/test/stub/rails2.3/script/dbconsole +0 -3
- data/test/stub/rails2.3/script/destroy +0 -3
- data/test/stub/rails2.3/script/generate +0 -3
- data/test/stub/rails2.3/script/performance/benchmarker +0 -3
- data/test/stub/rails2.3/script/performance/profiler +0 -3
- data/test/stub/rails2.3/script/performance/request +0 -3
- data/test/stub/rails2.3/script/plugin +0 -3
- data/test/stub/rails2.3/script/process/inspector +0 -3
- data/test/stub/rails2.3/script/process/reaper +0 -3
- data/test/stub/rails2.3/script/process/spawner +0 -3
- data/test/stub/rails2.3/script/runner +0 -3
- data/test/stub/rails2.3/script/server +0 -3
- data/test/stub/rails2.3/tmp/cache/.gitignore +0 -1
- data/test/stub/rails2.3/tmp/pids/.gitignore +0 -1
- data/test/stub/rails2.3/tmp/sessions/.gitignore +0 -1
- data/test/stub/rails2.3/tmp/sockets/.gitignore +0 -1
@@ -1,25 +0,0 @@
|
|
1
|
-
# -*- mode: ruby -*-
|
2
|
-
# vi: set ft=ruby :
|
3
|
-
|
4
|
-
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
5
|
-
VAGRANTFILE_API_VERSION = "2"
|
6
|
-
|
7
|
-
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
8
|
-
config.vm.box = "phusion-open-ubuntu-12.04-amd64"
|
9
|
-
config.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-12.04-amd64-vbox.box"
|
10
|
-
|
11
|
-
if File.exist?("../../bin/passenger")
|
12
|
-
passenger_path = File.absolute_path("../../bin/passenger")
|
13
|
-
elsif File.directory?("../passenger")
|
14
|
-
passenger_path = File.absolute_path("../passenger")
|
15
|
-
end
|
16
|
-
if passenger_path
|
17
|
-
config.vm.synced_folder passenger_path, "/passenger"
|
18
|
-
end
|
19
|
-
|
20
|
-
config.vm.provider :vmware_fusion do |f, override|
|
21
|
-
override.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-12.04-amd64-vmwarefusion.box"
|
22
|
-
end
|
23
|
-
|
24
|
-
config.vm.provision :shell, :path => "internal/scripts/setup-vagrant.sh"
|
25
|
-
end
|
data/packaging/debian/build
DELETED
@@ -1,210 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -e
|
3
|
-
|
4
|
-
SELFDIR="`dirname \"$0\"`"
|
5
|
-
SELFDIR="`cd \"$SELFDIR\" && pwd`"
|
6
|
-
source "$SELFDIR/internal/lib/library.sh"
|
7
|
-
source "$SELFDIR/internal/lib/distro_info.sh"
|
8
|
-
|
9
|
-
PASSENGER_DIR=
|
10
|
-
WORK_DIR=
|
11
|
-
CACHE_DIR=
|
12
|
-
OUTPUT_DIR=
|
13
|
-
CONCURRENCY=1
|
14
|
-
DISTRIBUTIONS="$DEFAULT_DISTROS"
|
15
|
-
ARCHITECTURES="i386 amd64"
|
16
|
-
FETCH_PASSENGER_TARBALL_FROM_CACHE=true
|
17
|
-
CLEAR_WORK_DIR=true
|
18
|
-
SHOW_OVERVIEW_PERIODICALLY=false
|
19
|
-
SHOW_BACKTRACES=false
|
20
|
-
SHOW_TASKS=false
|
21
|
-
ARGV=
|
22
|
-
|
23
|
-
function usage()
|
24
|
-
{
|
25
|
-
echo "Usage: ./build [OPTIONS] <TASK NAMES...>"
|
26
|
-
echo "Build Debian packages."
|
27
|
-
echo
|
28
|
-
echo "Required options:"
|
29
|
-
echo " -p DIR Path to Passenger source directory"
|
30
|
-
echo " -w DIR Path to work directory (for temporary files)"
|
31
|
-
echo " -c DIR Path to cache directory"
|
32
|
-
echo " -o DIR Path in which to store build products"
|
33
|
-
echo
|
34
|
-
echo "Optional options:"
|
35
|
-
echo " -j NUM Set build concurrency. Default: 1"
|
36
|
-
echo " -d NAMES Build only for given distributions. This is a space-separated list"
|
37
|
-
echo " of distribution names."
|
38
|
-
echo " Default: $DEFAULT_DISTROS"
|
39
|
-
echo " -a NAMES Build only for given architectures. This is a space-separated list"
|
40
|
-
echo " of architecture names."
|
41
|
-
echo " Default: $ARCHITECTURES"
|
42
|
-
echo " -R Do not fetch Passenger tarball from cache"
|
43
|
-
echo " -N Do not clear work directory on startup"
|
44
|
-
echo " -O Periodically show progress overview"
|
45
|
-
echo " -t Show backtraces on error"
|
46
|
-
echo
|
47
|
-
echo " -T Show all tasks"
|
48
|
-
echo " -h Show usage"
|
49
|
-
}
|
50
|
-
|
51
|
-
function parse_options()
|
52
|
-
{
|
53
|
-
local OPTIND=1
|
54
|
-
local ORIG_ARGV
|
55
|
-
local opt
|
56
|
-
while getopts "p:w:c:o:j:d:a:tRNOTh" opt; do
|
57
|
-
case "$opt" in
|
58
|
-
p)
|
59
|
-
PASSENGER_DIR="$OPTARG"
|
60
|
-
;;
|
61
|
-
w)
|
62
|
-
WORK_DIR="$OPTARG"
|
63
|
-
;;
|
64
|
-
c)
|
65
|
-
CACHE_DIR="$OPTARG"
|
66
|
-
;;
|
67
|
-
o)
|
68
|
-
OUTPUT_DIR="$OPTARG"
|
69
|
-
;;
|
70
|
-
j)
|
71
|
-
CONCURRENCY=$OPTARG
|
72
|
-
;;
|
73
|
-
d)
|
74
|
-
DISTRIBUTIONS="$OPTARG"
|
75
|
-
;;
|
76
|
-
a)
|
77
|
-
ARCHITECTURES="$OPTARG"
|
78
|
-
;;
|
79
|
-
t)
|
80
|
-
SHOW_BACKTRACES=true
|
81
|
-
;;
|
82
|
-
R)
|
83
|
-
FETCH_PASSENGER_TARBALL_FROM_CACHE=false
|
84
|
-
;;
|
85
|
-
N)
|
86
|
-
CLEAR_WORK_DIR=false
|
87
|
-
;;
|
88
|
-
O)
|
89
|
-
SHOW_OVERVIEW_PERIODICALLY=true
|
90
|
-
;;
|
91
|
-
T)
|
92
|
-
SHOW_TASKS=true
|
93
|
-
;;
|
94
|
-
h)
|
95
|
-
usage
|
96
|
-
exit
|
97
|
-
;;
|
98
|
-
*)
|
99
|
-
return 1
|
100
|
-
;;
|
101
|
-
esac
|
102
|
-
done
|
103
|
-
|
104
|
-
(( OPTIND -= 1 )) || true
|
105
|
-
shift $OPTIND || true
|
106
|
-
ORIG_ARGV=("$@")
|
107
|
-
|
108
|
-
if [[ ${#ORIG_ARGV[@]} = 0 ]]; then
|
109
|
-
SHOW_TASKS=true
|
110
|
-
else
|
111
|
-
ARGV=()
|
112
|
-
if $CLEAR_WORK_DIR; then
|
113
|
-
ARGV+=(clear_work_dir)
|
114
|
-
fi
|
115
|
-
ARGV+=(start "${ORIG_ARGV[@]}" finish)
|
116
|
-
if $SHOW_BACKTRACES; then
|
117
|
-
ARGV+=(--trace)
|
118
|
-
fi
|
119
|
-
fi
|
120
|
-
|
121
|
-
if ! $SHOW_TASKS; then
|
122
|
-
if [[ "$PASSENGER_DIR" = "" ]]; then
|
123
|
-
echo "ERROR: please specify a Passenger source directory with -p."
|
124
|
-
exit 1
|
125
|
-
fi
|
126
|
-
if [[ ! -e "$PASSENGER_DIR" ]]; then
|
127
|
-
echo "ERROR: $PASSENGER_DIR does not exist."
|
128
|
-
exit 1
|
129
|
-
fi
|
130
|
-
if [[ "$WORK_DIR" = "" ]]; then
|
131
|
-
echo "ERROR: please specify a work directory with -w."
|
132
|
-
exit 1
|
133
|
-
fi
|
134
|
-
if [[ "$CACHE_DIR" = "" ]]; then
|
135
|
-
echo "ERROR: please specify a cache directory with -c."
|
136
|
-
exit 1
|
137
|
-
fi
|
138
|
-
if [[ "$OUTPUT_DIR" = "" ]]; then
|
139
|
-
echo "ERROR: please specify an output directory with -o."
|
140
|
-
exit 1
|
141
|
-
fi
|
142
|
-
fi
|
143
|
-
}
|
144
|
-
|
145
|
-
parse_options "$@"
|
146
|
-
|
147
|
-
if tty -s; then
|
148
|
-
TTY_ARGS="-t -i"
|
149
|
-
else
|
150
|
-
TTY_ARGS=
|
151
|
-
fi
|
152
|
-
|
153
|
-
if $SHOW_TASKS; then
|
154
|
-
exec docker run \
|
155
|
-
--rm $TTY_ARGS \
|
156
|
-
-v "$SELFDIR:/system:ro" \
|
157
|
-
-e "DISTRIBUTIONS=$DISTRIBUTIONS" \
|
158
|
-
-e "ARCHITECTURES=$ARCHITECTURES" \
|
159
|
-
-e "SHOW_TASKS=true" \
|
160
|
-
-e "LC_CTYPE=C.UTF-8" \
|
161
|
-
phusion/passenger_apt_automation_buildbox \
|
162
|
-
/sbin/my_init --quiet --skip-runit --skip-startup-files -- \
|
163
|
-
drake -f /system/internal/build/Rakefile -T --trace
|
164
|
-
else
|
165
|
-
PASSENGER_DIR="`absolute_path \"$PASSENGER_DIR\"`"
|
166
|
-
WORK_DIR="`absolute_path \"$WORK_DIR\"`"
|
167
|
-
CACHE_DIR="`absolute_path \"$CACHE_DIR\"`"
|
168
|
-
OUTPUT_DIR="`absolute_path \"$OUTPUT_DIR\"`"
|
169
|
-
|
170
|
-
run mkdir -p "$WORK_DIR"
|
171
|
-
run mkdir -p "$CACHE_DIR"
|
172
|
-
run mkdir -p "$CACHE_DIR/pbuilder/ccache"
|
173
|
-
run mkdir -p "$OUTPUT_DIR"
|
174
|
-
|
175
|
-
echo "+ Initializing ccache directory"
|
176
|
-
verbose_run docker run \
|
177
|
-
--rm $TTY_ARGS \
|
178
|
-
-v "$SELFDIR:/system:ro" \
|
179
|
-
-v "$CACHE_DIR:/cache" \
|
180
|
-
-e "DISTRIBUTIONS=$DISTRIBUTIONS" \
|
181
|
-
-e "ARCHITECTURES=$ARCHITECTURES" \
|
182
|
-
-e "APP_UID=`/usr/bin/id -u`" \
|
183
|
-
-e "APP_GID=`/usr/bin/id -g`" \
|
184
|
-
phusion/passenger_apt_automation_buildbox \
|
185
|
-
/system/internal/scripts/inituidgid.sh \
|
186
|
-
/system/internal/scripts/initccache.sh
|
187
|
-
|
188
|
-
echo "-------- Entering Docker container --------"
|
189
|
-
exec docker run \
|
190
|
-
--rm $TTY_ARGS \
|
191
|
-
--privileged \
|
192
|
-
-v "$SELFDIR:/system:ro" \
|
193
|
-
-v "$PASSENGER_DIR:/passenger:ro" \
|
194
|
-
-v "$WORK_DIR:/work" \
|
195
|
-
-v "$CACHE_DIR:/cache" \
|
196
|
-
-v "$OUTPUT_DIR:/output" \
|
197
|
-
-v "$CACHE_DIR/pbuilder:/var/cache/pbuilder" \
|
198
|
-
-e "DISTRIBUTIONS=$DISTRIBUTIONS" \
|
199
|
-
-e "ARCHITECTURES=$ARCHITECTURES" \
|
200
|
-
-e "SHOW_OVERVIEW_PERIODICALLY=$SHOW_OVERVIEW_PERIODICALLY" \
|
201
|
-
-e "FETCH_PASSENGER_TARBALL_FROM_CACHE=$FETCH_PASSENGER_TARBALL_FROM_CACHE" \
|
202
|
-
-e "APP_UID=`/usr/bin/id -u`" \
|
203
|
-
-e "APP_GID=`/usr/bin/id -g`" \
|
204
|
-
-e "LC_CTYPE=C.UTF-8" \
|
205
|
-
phusion/passenger_apt_automation_buildbox \
|
206
|
-
/sbin/my_init --quiet --skip-runit --skip-startup-files -- \
|
207
|
-
/system/internal/scripts/inituidgid.sh \
|
208
|
-
/sbin/setuser app \
|
209
|
-
drake -f /system/internal/build/Rakefile -j $CONCURRENCY "${ARGV[@]}"
|
210
|
-
fi
|
@@ -1,1989 +0,0 @@
|
|
1
|
-
nginx (1.6.2-5ubuntu3) vivid-proposed; urgency=medium
|
2
|
-
|
3
|
-
* debian/rules:
|
4
|
-
* Reversed Debian change in 1.6.2-5ubuntu2.
|
5
|
-
* Added DEB_BUILD_MAINT_OPTIONS=hardening=+all to enable all
|
6
|
-
dpkg-buildflags to harden the code, except for PIE flags.
|
7
|
-
* Manually define DEB_BUILD_MAINT_OPTIONS in DEBIAN_NGINX_PERL_LDFLAGS
|
8
|
-
to not have -fPIE conflicts in Perl flags.
|
9
|
-
|
10
|
-
-- Thomas Ward <teward@ubuntu.com> Wed, 01 Apr 2015 14:57:34 -0400
|
11
|
-
|
12
|
-
nginx (1.6.2-5ubuntu2) vivid-proposed; urgency=medium
|
13
|
-
|
14
|
-
* debian/rules:
|
15
|
-
* Added -fPIE -pie to build rules (enables position-independent builds)
|
16
|
-
using Debian's committed change to enable. (LP: #1315426)
|
17
|
-
|
18
|
-
-- Thomas Ward <teward@ubuntu.com> Wed, 01 Apr 2015 14:26:32 -0400
|
19
|
-
|
20
|
-
nginx (1.6.2-5ubuntu1) vivid; urgency=medium
|
21
|
-
|
22
|
-
* Merge from Debian. Remaining changes: (LP: #1399967)
|
23
|
-
- debian/patches/ubuntu-branding.patch: add Ubuntu branding (refreshed)
|
24
|
-
- debian/rules: Drop from -O3 to -O2 to work around a build failure.
|
25
|
-
- d/{control,rules,nginx-core.*}: add new binary package for main,
|
26
|
-
nginx-core, which contains only source-tarball-included modules
|
27
|
-
and no third-party modules.
|
28
|
-
- debian/tests/control: add nginx-core test.
|
29
|
-
- debian/control: drop luajit from Build-Depends as it is in universe.
|
30
|
-
|
31
|
-
-- Thomas Ward <teward@ubuntu.com> Sat, 06 Dec 2014 13:06:55 -0500
|
32
|
-
|
33
|
-
nginx (1.6.2-5) unstable; urgency=medium
|
34
|
-
|
35
|
-
[ Christos Trochalakis ]
|
36
|
-
* debian/conf/nginx.conf:
|
37
|
-
+ Drop SSLv3 protocol (POODLE), and prefer server ciphers
|
38
|
-
by default. (Closes: #767456)
|
39
|
-
* debian/copyright:
|
40
|
-
+ Add copyright for ngx_http_substitutions_filter_module.
|
41
|
-
* debian/nginx-common.{preinst,postinst,postrm}:
|
42
|
-
+ Remove /etc/nginx/naxsi-ui.conf conffile. (Closes: #768233)
|
43
|
-
* debian/README.Debian:
|
44
|
-
+ Add a list of important changes since wheezy.
|
45
|
-
|
46
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Sun, 30 Nov 2014 10:39:55 +0200
|
47
|
-
|
48
|
-
nginx (1.6.2-4ubuntu1) vivid; urgency=medium
|
49
|
-
|
50
|
-
* Merge from Debian. Remaining changes: (LP: #1388621)
|
51
|
-
- debian/patches/ubuntu-branding.patch: add Ubuntu branding
|
52
|
-
(refreshed).
|
53
|
-
- debian/rules: Drop from -O3 to -O2 to work around a build failure.
|
54
|
-
- d/{control,rules,nginx-core.*}: add new binary package for main,
|
55
|
-
nginx-core, which contains only source-tarball-included modules
|
56
|
-
and no third-party modules.
|
57
|
-
- debian/tests/control: add nginx-core test.
|
58
|
-
- debian/control: drop luajit from Build-Depends as it is in universe.
|
59
|
-
* debian/control:
|
60
|
-
* Remove nginx-naxsi* from nginx-core and related
|
61
|
-
package stanzas, as the naxsi packages have all been dropped.
|
62
|
-
* Remove reference to nginx-naxsi from nginx metapackage description
|
63
|
-
* debian/index.html: Modify included index.html file to have Ubuntu
|
64
|
-
branding, Ubuntu bug reporting tool references, and a link to the
|
65
|
-
Launchpad bugs page for the nginx package.
|
66
|
-
|
67
|
-
-- Thomas Ward <teward@ubuntu.com> Wed, 05 Nov 2014 10:05:07 -0500
|
68
|
-
|
69
|
-
nginx (1.6.2-4) unstable; urgency=medium
|
70
|
-
|
71
|
-
[ Christos Trochalakis ]
|
72
|
-
* debian/modules/nginx-development-kit:
|
73
|
-
+ Upgrade v0.2.17-7-g24202b4 -> v0.2.19
|
74
|
-
* debian/modules/nginx-echo:
|
75
|
-
+ Upgrade v0.51 -> v0.56
|
76
|
-
* debian/modules/nginx-upload-progress:
|
77
|
-
+ Upgrade v0.9.0-0-ga788dea -> 0.9.1
|
78
|
-
* debian/modules/ngx-fancy-index:
|
79
|
-
+ Upgrade v0.3.3 -> v0.3.4
|
80
|
-
* debian/copyright:
|
81
|
-
+ Rewrite copyright file fixing various issues.
|
82
|
-
* debian/nginx-common.nginx.logrotate:
|
83
|
-
+ Switch postrotate to the initscript's rotate command.
|
84
|
-
|
85
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Sun, 19 Oct 2014 08:23:33 +0300
|
86
|
-
|
87
|
-
nginx (1.6.2-3) unstable; urgency=medium
|
88
|
-
|
89
|
-
[ Christos Trochalakis ]
|
90
|
-
* Change the default document root to /var/www/html according to debian
|
91
|
-
policy 3.9.6.0. (Closes: #730382)
|
92
|
-
* Provide a new, debian specific, default landing page.
|
93
|
-
* debian/nginx-common.nginx.service:
|
94
|
-
+ Graceful stopping of nginx was not handled correctly with systemd.
|
95
|
-
* debian/nginx-common.nginx.init:
|
96
|
-
+ Gracefully stop nginx by default, we are switcing to a configurable
|
97
|
-
STOP/5/TERM/5/KILL/5 schedule. We are now in sync with the systemd
|
98
|
-
service file. (Closes: #762708)
|
99
|
-
* debian/conf:
|
100
|
-
+ Introduce a `snippets/fastcgi-php.conf` snippet with a basic
|
101
|
-
php configuration that can be included when needed. (Closes: #762491)
|
102
|
-
+ Introduce a `snippets/snakeoil.conf` snippet that enabled https
|
103
|
-
using the certs installed by the ssl-cert package.
|
104
|
-
+ Suggest disabling SSLv3 in default site with a ref to POODLE.
|
105
|
-
* debian/control:
|
106
|
-
+ nginx-common now suggests ssl-cert.
|
107
|
-
|
108
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Thu, 16 Oct 2014 13:34:29 +0300
|
109
|
-
|
110
|
-
nginx (1.6.2-2) unstable; urgency=medium
|
111
|
-
|
112
|
-
[ Christos Trochalakis ]
|
113
|
-
* Drop nginx-naxsi, nginx-naxsi-dbg, nginx-naxsi-ui packages.
|
114
|
-
(Closes: #746199, #737146, #712445)
|
115
|
-
* debian/conf/nginx.conf:
|
116
|
-
+ Remove relic passenger stanga.
|
117
|
-
|
118
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Fri, 26 Sep 2014 11:06:47 +0300
|
119
|
-
|
120
|
-
nginx (1.6.2-1ubuntu1.1) utopic; urgency=medium
|
121
|
-
|
122
|
-
* debian/conf/sites-available/default: Remove SSLv3 from the ssl_protocols
|
123
|
-
line in the default config example, due to POODLE vulnerability.
|
124
|
-
|
125
|
-
-- Thomas Ward <teward@dark-net.net> Wed, 22 Oct 2014 09:43:35 -0400
|
126
|
-
|
127
|
-
nginx (1.6.2-1ubuntu1) utopic; urgency=medium
|
128
|
-
|
129
|
-
* Merge from Debian. Remaining changes:
|
130
|
-
- debian/patches/ubuntu-branding.patch: add Ubuntu branding
|
131
|
-
(refreshed).
|
132
|
-
- debian/rules: Drop from -O3 to -O2 to work around a build failure.
|
133
|
-
- d/{control,rules,nginx-core.*}: add new binary package for main,
|
134
|
-
nginx-core, which contains only source-tarball-included modules
|
135
|
-
and no third-party modules.
|
136
|
-
* debian/tests/control: add nginx-core test.
|
137
|
-
* debian/control: drop luajit from Build-Depends as it is in universe.
|
138
|
-
|
139
|
-
-- Marc Deslauriers <marc.deslauriers@ubuntu.com> Mon, 22 Sep 2014 13:32:30 -0400
|
140
|
-
|
141
|
-
nginx (1.6.2-1) unstable; urgency=high
|
142
|
-
|
143
|
-
[ Christos Trochalakis ]
|
144
|
-
* New upstream release.
|
145
|
-
CVE-2014-3616: "it was possible to reuse SSL sessions in unrelated
|
146
|
-
contexts if a shared SSL session cache or the same TLS session ticket
|
147
|
-
key was used for multiple "server" blocks".
|
148
|
-
(Closes: #761940)
|
149
|
-
|
150
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Wed, 17 Sep 2014 11:19:01 +0300
|
151
|
-
|
152
|
-
nginx (1.6.1-2) unstable; urgency=medium
|
153
|
-
|
154
|
-
[ Christos Trochalakis ]
|
155
|
-
* debian/control:
|
156
|
-
+ Build nginx-extras against luajit (Closes: #755875)
|
157
|
-
* debian/modules/nginx-lua:
|
158
|
-
+ Update nginx-lua to v0.9.12
|
159
|
-
* debian/nginx-common.nginx.init:
|
160
|
-
+ Better pidfile extraction from nginx.conf (Closes: #747329)
|
161
|
-
* debian/conf/mime.types:
|
162
|
-
+ Upgrade to the latest upstream mime types.
|
163
|
-
As a consequence, nginx now uses "application/javascript" for
|
164
|
-
javascript files.
|
165
|
-
* debian/conf/nginx.conf:
|
166
|
-
+ Add application/javascript to the gzip_types list. (Closes: #737176)
|
167
|
-
* debian/rules:
|
168
|
-
+ Make naxsi module first in configure parameters.
|
169
|
-
Fixes erratic naxsi behaviour. (Closes: #758642)
|
170
|
-
* debian/conf/{koi-utf,koi-win,scgi_params,uwsgi_params}:
|
171
|
-
+ Sync with upstream config files.
|
172
|
-
* debian/conf/fastcgi_params:
|
173
|
-
+ Sync with upstream and remove `SCRIPT_FILENAME` parameter.
|
174
|
-
This change might break fastcgi sites. (Closes: #718639)
|
175
|
-
+ debian/conf/fastcgi.conf:
|
176
|
-
+ Ship upstream file.
|
177
|
-
* debian/nginx-common.NEWS:
|
178
|
-
+ Document syncing conf files with upstream.
|
179
|
-
* debian/tests/control:
|
180
|
-
+ Include some simple autopkgtests.
|
181
|
-
Thanks to Robie Basak for the initial patch. (Closes: #756391)
|
182
|
-
* debian/modules/nginx-http-push:
|
183
|
-
+ Update to v0.73.
|
184
|
-
Fixes fd leak on reload. (Closes: #745921)
|
185
|
-
|
186
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Thu, 04 Sep 2014 13:00:46 +0300
|
187
|
-
|
188
|
-
nginx (1.6.1-1ubuntu2) utopic; urgency=medium
|
189
|
-
|
190
|
-
* Rebuild for Perl 5.20.0.
|
191
|
-
|
192
|
-
-- Colin Watson <cjwatson@ubuntu.com> Sun, 24 Aug 2014 06:43:36 -0700
|
193
|
-
|
194
|
-
nginx (1.6.1-1ubuntu1) utopic; urgency=medium
|
195
|
-
|
196
|
-
* Merge from Debian. Remaining changes:
|
197
|
-
- debian/patches/ubuntu-branding.patch: add Ubuntu branding
|
198
|
-
(refreshed).
|
199
|
-
- debian/rules: Drop from -O3 to -O2 to work around a build failure.
|
200
|
-
- d/{control,rules,nginx-core.*}: add new binary package for main,
|
201
|
-
nginx-core, which contains only source-tarball-included modules
|
202
|
-
and no third-party modules.
|
203
|
-
* Add dep8 smoke test
|
204
|
-
|
205
|
-
-- Robie Basak <robie.basak@ubuntu.com> Fri, 15 Aug 2014 16:46:48 +0000
|
206
|
-
|
207
|
-
nginx (1.6.1-1) unstable; urgency=medium
|
208
|
-
|
209
|
-
[ Christos Trochalakis ]
|
210
|
-
* New upstream release.
|
211
|
-
Handle CVE-2014-3556 SMTP STARTTLS vulnerability (Closes: #757196)
|
212
|
-
http://mailman.nginx.org/pipermail/nginx-announce/2014/000144.html
|
213
|
-
|
214
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Wed, 06 Aug 2014 10:05:08 +0300
|
215
|
-
|
216
|
-
nginx (1.6.0-2) unstable; urgency=medium
|
217
|
-
|
218
|
-
[ gregor herrmann ]
|
219
|
-
* Patch from Gregor Herrmann <gregoa@debian.org>:
|
220
|
-
Fix "hardcodes /usr/lib/perl5":
|
221
|
-
- drop debian/nginx-extras.dirs, not needed, dh_install uses the
|
222
|
-
directories from debian/nginx-extras.install
|
223
|
-
- make debian/nginx-extras.install executable, and use $Config{vendorarch}
|
224
|
-
for the perl library path there
|
225
|
-
(Closes: #752796)
|
226
|
-
|
227
|
-
-- Kartik Mistry <kartik@debian.org> Tue, 29 Jul 2014 04:56:03 +0000
|
228
|
-
|
229
|
-
nginx (1.6.0-1) unstable; urgency=medium
|
230
|
-
|
231
|
-
[ Christos Trochalakis ]
|
232
|
-
* New upstream release.
|
233
|
-
* debian/rules:
|
234
|
-
+ Enable auth request http module. (Closes: #725732)
|
235
|
-
* debian/patches/series:
|
236
|
-
+ Remove backported openssl guard patch.
|
237
|
-
|
238
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Thu, 24 Apr 2014 19:23:22 +0300
|
239
|
-
|
240
|
-
nginx (1.4.7-2) unstable; urgency=medium
|
241
|
-
|
242
|
-
[ Christos Trochalakis ]
|
243
|
-
* debian/rules:
|
244
|
-
+ Convert to dh $@
|
245
|
-
As a side effect, fixes make dependency issues (Closes: #744050)
|
246
|
-
|
247
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Thu, 17 Apr 2014 14:30:27 +0300
|
248
|
-
|
249
|
-
nginx (1.4.7-1) unstable; urgency=medium
|
250
|
-
|
251
|
-
[ Christos Trochalakis ]
|
252
|
-
* New upstream release. (Closes: #742059)
|
253
|
-
+ Fixes pottential arbitrary code execution (CVE-2014-0133)
|
254
|
-
Debian build was not vulnerable since it was compiled
|
255
|
-
with the --with-debug configure option.
|
256
|
-
* debian/modules/nginx-http-push:
|
257
|
-
+ Update to v0.711 (Closes: #732251)
|
258
|
-
* debian/modules/headers-more-nginx-module:
|
259
|
-
+ Update to v0.25, containing several bugfixes.
|
260
|
-
* debian/modules/nginx-echo:
|
261
|
-
+ Update to v0.51, containing several bugfixes.
|
262
|
-
* debian/modules/nginx-dav-ext-module:
|
263
|
-
+ Update to v0.0.3, containing some uri encoding fixes.
|
264
|
-
* debian/modules/ngx_http_substitutions_filter_module:
|
265
|
-
+ Update to v0.6.4, containing some enhancements.
|
266
|
-
* debian/modules/nginx-auth-pam:
|
267
|
-
+ Update to v1.3.
|
268
|
-
This version contains our downstream patch (See: #721702)
|
269
|
-
|
270
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Tue, 18 Mar 2014 22:03:47 +0200
|
271
|
-
|
272
|
-
nginx (1.4.6-1ubuntu3) trusty; urgency=medium
|
273
|
-
|
274
|
-
* Add new binary package for main, nginx-core, which contains only
|
275
|
-
source-tarball-included modules and no third-party modules.
|
276
|
-
* Changes to debian/ directory:
|
277
|
-
- control:
|
278
|
-
+ Add entry for nginx-core and nginx-core-dbg.
|
279
|
-
- rules:
|
280
|
-
+ Add nginx-core flavor to the build rules.
|
281
|
-
- nginx-core.*: Add new packaging files for nginx-core based on
|
282
|
-
the packaging files for nginx-full.
|
283
|
-
* The above changes satisfy the requirements for main (LP: #1262710)
|
284
|
-
|
285
|
-
-- Thomas Ward <teward@ubuntu.com> Mon, 10 Mar 2014 18:23:36 -0400
|
286
|
-
|
287
|
-
nginx (1.4.6-1ubuntu2) trusty; urgency=medium
|
288
|
-
|
289
|
-
* debian/rules: Drop from -O3 to -O2 to work around a build failure.
|
290
|
-
|
291
|
-
-- Adam Conrad <adconrad@ubuntu.com> Sun, 09 Mar 2014 11:49:28 -0600
|
292
|
-
|
293
|
-
nginx (1.4.6-1ubuntu1) trusty; urgency=low
|
294
|
-
|
295
|
-
* Merge from Debian unstable. Remaining changes:
|
296
|
-
- debian/patches/ubuntu-branding.patch: Add Ubuntu branding.
|
297
|
-
|
298
|
-
-- Adam Conrad <adconrad@ubuntu.com> Sun, 09 Mar 2014 11:13:26 -0600
|
299
|
-
|
300
|
-
nginx (1.4.6-1) unstable; urgency=medium
|
301
|
-
|
302
|
-
[ Christos Trochalakis ]
|
303
|
-
* New upstream release.
|
304
|
-
* debian/rules:
|
305
|
-
+ Avoid double declaration of hardening flags.
|
306
|
-
+ Expand buildflags so the build log is easier to follow.
|
307
|
-
+ Switch to --with--cc-opt, --with-ld-opt configure flags.
|
308
|
-
Nginx is now compiled with --Werror, making all warnings
|
309
|
-
into errors.
|
310
|
-
+ Split common configure options.
|
311
|
-
+ Enable realip module for nginx-light.
|
312
|
-
+ Enable debug module for nginx-light and nginx-extras.
|
313
|
-
* debian/patches/perl-use-dpkg-buildflags.patch:
|
314
|
-
+ Rewrite patch to just just override LDDLFLAGS and not
|
315
|
-
CCFLAGS since this is handled by --with-cc-opt.
|
316
|
-
* debian/watch, debian/upstream/signing-key.asc:
|
317
|
-
+ Fix upstream signature verification.
|
318
|
-
|
319
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Tue, 04 Mar 2014 18:06:55 +0200
|
320
|
-
|
321
|
-
nginx (1.4.5-1ubuntu1) trusty; urgency=medium
|
322
|
-
|
323
|
-
* Resynchronise with Debian (LP: #1280511). Remaining changes:
|
324
|
-
- debian/patches/ubuntu-branding.patch:
|
325
|
-
+ Add Ubuntu branding to server_tokens.
|
326
|
-
|
327
|
-
-- Colin Watson <cjwatson@ubuntu.com> Sat, 15 Feb 2014 03:05:42 +0000
|
328
|
-
|
329
|
-
nginx (1.4.5-1) unstable; urgency=medium
|
330
|
-
|
331
|
-
[ Christos Trochalakis ]
|
332
|
-
* New upstream release.
|
333
|
-
* debian/modules/nginx-lua:
|
334
|
-
+ Update nginx-lua to v0.9.4
|
335
|
-
* debian/nginx-naxsi-ui.preinst:
|
336
|
-
+ Fix exit status issue (Closes: #735152)
|
337
|
-
* debian/control:
|
338
|
-
+ Fix arch:all to arch:any dependencies
|
339
|
-
+ Make nginx depend on specific flavor version
|
340
|
-
* debian/nginx-*.postinst:
|
341
|
-
+ Make nginx start by default (Closes: #735551)
|
342
|
-
* debian/nginx-*.prerm:
|
343
|
-
+ No need to check for invoke-rc.d,
|
344
|
-
correctly set the exit code on error
|
345
|
-
* debian/nginx-common.nginx.init:
|
346
|
-
+ Rewrite some parts of the initscript
|
347
|
-
+ Introduce rotate command
|
348
|
-
+ Introduce upgrade command
|
349
|
-
|
350
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Thu, 13 Feb 2014 11:41:49 +0200
|
351
|
-
|
352
|
-
nginx (1.4.4-4) unstable; urgency=medium
|
353
|
-
|
354
|
-
[ Christos Trochalakis ]
|
355
|
-
* debian/nginx-common.postinst:
|
356
|
-
+ Fix log re-opening issue due to wrong /var/log/nginx
|
357
|
-
permissions. (Closes: #734139)
|
358
|
-
|
359
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Sat, 04 Jan 2014 09:41:40 +0200
|
360
|
-
|
361
|
-
nginx (1.4.4-3) unstable; urgency=medium
|
362
|
-
|
363
|
-
[ Christos Trochalakis ]
|
364
|
-
* debian/nginx-naxsi-ui.postinst:
|
365
|
-
+ Fix early exit issue (Closes: #715435)
|
366
|
-
|
367
|
-
-- Christos Trochalakis <yatiohi@ideopolis.gr> Tue, 31 Dec 2013 11:47:07 +0200
|
368
|
-
|
369
|
-
nginx (1.4.4-2ubuntu1) trusty; urgency=medium
|
370
|
-
|
371
|
-
* Resynchronise with Debian. Remaining changes:
|
372
|
-
- debian/patches/ubuntu-branding.patch:
|
373
|
-
+ Add Ubuntu branding to server_tokens.
|
374
|
-
|
375
|
-
-- Colin Watson <cjwatson@ubuntu.com> Sat, 28 Dec 2013 10:21:44 +0000
|
376
|
-
|
377
|
-
nginx (1.4.4-2) unstable; urgency=low
|
378
|
-
|
379
|
-
[ Michael Lustfield ]
|
380
|
-
* debian/control:
|
381
|
-
+ Added Provides: httpd-cgi to packages. (Closes: #701508)
|
382
|
-
+ Added other options to nginx depends. (Closes: #729860)
|
383
|
-
+ Added Spdy to nginx-full package description.
|
384
|
-
* debian/nginx-common.nginx.init:
|
385
|
-
+ Added missing line from patch. (Closes: #728103)
|
386
|
-
* debian/conf/sites-available/default:
|
387
|
-
+ Changed ssl_protocols and ssl_ciphers. (Closes: 730142)
|
388
|
-
* debian/nginx-common.preinst:
|
389
|
-
+ Modify permissions of /var/log/nginx. (Closes: #701112)
|
390
|
-
* debian/rules:
|
391
|
-
+ Added spdy support to nginx-full. (Closes: #730432)
|
392
|
-
|
393
|
-
[ Christos Trochalakis ]
|
394
|
-
* debian/nginx-doc,docs, debian/nginx-common.NEWS:
|
395
|
-
+ Ship NEWS with nginx-common instead of nginx-doc.
|
396
|
-
* debian/conf/proxy_params:
|
397
|
-
+ Host header should be passed unmodified to the proxied server.
|
398
|
-
+ Pass X-Forwarded-Proto header to the proxied server.
|
399
|
-
* debian/control:
|
400
|
-
+ Fix nginx-naxsi-ui Depends and Conflicts lines.
|
401
|
-
|
402
|
-
[ Neutron Soutmun ]
|
403
|
-
* debian/patches/guard-use-of-deprecated-openssl-definition.patch:
|
404
|
-
+ Fix FTBFS against the recent libssl-dev. (Closes: #733107)
|
405
|
-
|
406
|
-
[ Kartik Mistry ]
|
407
|
-
* debian/control:
|
408
|
-
+ Updated to Standards-Version 3.9.5
|
409
|
-
* debian/watch, debian/upstream-signing-key.pgp:
|
410
|
-
+ Use upstream PGP signature to verify by watch file.
|
411
|
-
|
412
|
-
-- Kartik Mistry <kartik@debian.org> Fri, 27 Dec 2013 21:16:01 +0530
|
413
|
-
|
414
|
-
nginx (1.4.4-1ubuntu1) trusty; urgency=low
|
415
|
-
|
416
|
-
* Resynchronise with Debian (LP: #1253691). Remaining changes:
|
417
|
-
- debian/patches/ubuntu-branding.patch:
|
418
|
-
+ Add Ubuntu branding to server_tokens.
|
419
|
-
|
420
|
-
-- Colin Watson <cjwatson@ubuntu.com> Fri, 22 Nov 2013 12:23:25 +0000
|
421
|
-
|
422
|
-
nginx (1.4.4-1) unstable; urgency=low
|
423
|
-
|
424
|
-
[ Christos Trochalakis ]
|
425
|
-
* New upstream release. (Closes: #730012)
|
426
|
-
* debian/nginx-*.postinst:
|
427
|
-
+ Wait for the new master to write its pid file before sending QUIT to the
|
428
|
-
old master. This solves an issue with systemd and the upgrade mechanism.
|
429
|
-
Systemd receives the SIGCHLD from the old master but it can't see the new
|
430
|
-
pid because the new master has not written it yet. As a result, it kills
|
431
|
-
everything inside the cgroup, including the new master.
|
432
|
-
* debian/modules/ngx-fancyindex:
|
433
|
-
+ Upgrade Fancy Index module to v0.3.3 (Closes: #728721)
|
434
|
-
* debian/control:
|
435
|
-
+ Remove Upload module from nginx-extras description (Closes: #729003)
|
436
|
-
|
437
|
-
[ Michael Lustfield ]
|
438
|
-
* debian/control:
|
439
|
-
+ Added spdy to package description (Closes: #728038)
|
440
|
-
* debian/nginx-common.nginx.init:
|
441
|
-
+ Showing better start/stop messages. Thanks Pim van den Berg.
|
442
|
-
(Closes: #728103)
|
443
|
-
|
444
|
-
-- Michael Lustfield <michael@lustfield.net> Thu, 21 Nov 2013 19:25:50 +0530
|
445
|
-
|
446
|
-
nginx (1.4.3-2ubuntu1) trusty; urgency=low
|
447
|
-
|
448
|
-
* Resynchronise with Debian. Remaining changes:
|
449
|
-
- debian/patches/ubuntu-branding.patch:
|
450
|
-
+ Add Ubuntu branding to server_tokens.
|
451
|
-
|
452
|
-
-- Colin Watson <cjwatson@ubuntu.com> Mon, 21 Oct 2013 13:26:52 +0100
|
453
|
-
|
454
|
-
nginx (1.4.3-2) unstable; urgency=low
|
455
|
-
|
456
|
-
[ Kartik Mistry ]
|
457
|
-
* Renamed debian/nginx-common.service to debian/nginx-common.nginx.service so
|
458
|
-
it is installed properly for systemd. Thanks to Christos Trochalakis.
|
459
|
-
* Set debian/compat to 9 and updated debhelper dependency.
|
460
|
-
|
461
|
-
[ Christos Trochalakis ]
|
462
|
-
* debian/rules, debian/nginx-common.dirs,
|
463
|
-
debian/debian-common.nginx.logrotate:
|
464
|
-
+ Switch to dh_installlogrotate.
|
465
|
-
* debian/rules:
|
466
|
-
+ *-stamp files are deleted by dh_clean.
|
467
|
-
+ Remove unused mime-types target.
|
468
|
-
+ Remove not needed config.sub and config.guess targets.
|
469
|
-
* debian/nginx-common.dirs:
|
470
|
-
+ Don't ship an empty /run dir.
|
471
|
-
* debian/nginx-{light,full,extras}.lintian-overrides:
|
472
|
-
+ Override false lintian spelling error warning.
|
473
|
-
|
474
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 16 Oct 2013 14:58:11 +0530
|
475
|
-
|
476
|
-
nginx (1.4.3-1) unstable; urgency=low
|
477
|
-
|
478
|
-
[ Cyril Lavier ]
|
479
|
-
* debian/nginx-naxsi-ui.postinst, debian/nginx-naxsi-ui.preinst:
|
480
|
-
+ Added missing arguments to have clean postinst/preinst scripts.
|
481
|
-
* debian/conf/fastcgi_params:
|
482
|
-
+ Defined fastcgi param HTTPS the same as upstream default.
|
483
|
-
(Closes: #712989)
|
484
|
-
|
485
|
-
[ Michael Lustfield ]
|
486
|
-
* conf/sites-available/default:
|
487
|
-
+ Removed /doc/ section per bug #715804.
|
488
|
-
|
489
|
-
[ Christos Trochalakis ]
|
490
|
-
* New upstream release. (Closes: #722640)
|
491
|
-
* debian/nginx-common.nginx.init:
|
492
|
-
+ Better pidfile extraction from nginx.conf. We now accept multiple
|
493
|
-
spaces and tabs as a field separator.
|
494
|
-
* debian/modules/nginx-auth-pam:
|
495
|
-
+ Fixed upstream bug. (Closes: #721702)
|
496
|
-
* debian/watch:
|
497
|
-
+ Only check for stable releases.
|
498
|
-
* debian/conf/sites-available/default:
|
499
|
-
+ Correctly fallback to 404 when the requested file is missing.
|
500
|
-
(Closes: #724232)
|
501
|
-
* debian/logrotate:
|
502
|
-
+ Gracefully handle empty pidfile in logrotate script.
|
503
|
-
(Closes: #696797)
|
504
|
-
|
505
|
-
[ Kartik Mistry ]
|
506
|
-
* Switch to dh-systemd (Closes: #713853)
|
507
|
-
|
508
|
-
-- Kartik Mistry <kartik@debian.org> Thu, 10 Oct 2013 17:28:56 +0530
|
509
|
-
|
510
|
-
nginx (1.4.1-3ubuntu1) saucy; urgency=low
|
511
|
-
|
512
|
-
* Resynchronise with Debian. Remaining changes:
|
513
|
-
- debian/patches/ubuntu-branding.patch:
|
514
|
-
+ Add Ubuntu branding to server_tokens.
|
515
|
-
|
516
|
-
-- Colin Watson <cjwatson@ubuntu.com> Thu, 20 Jun 2013 15:08:44 +0100
|
517
|
-
|
518
|
-
nginx (1.4.1-3) unstable; urgency=low
|
519
|
-
|
520
|
-
[ Kartik Mistry ]
|
521
|
-
* debian/control:
|
522
|
-
+ Changed libgd2-dev build-dep to libgd2-dev|libgd2-noxpm-dev allow
|
523
|
-
backporting (Closes: #711505)
|
524
|
-
|
525
|
-
[ Cyril Lavier ]
|
526
|
-
* debian/nginx-naxsi-ui.preinst
|
527
|
-
+ Added argument "install" to the preinst script. (Closes: #711590)
|
528
|
-
|
529
|
-
-- Kartik Mistry <kartik@debian.org> Sun, 09 Jun 2013 13:07:52 +0530
|
530
|
-
|
531
|
-
nginx (1.4.1-2ubuntu1) saucy; urgency=low
|
532
|
-
|
533
|
-
* Resynchronise with Debian. Remaining changes:
|
534
|
-
- debian/patches/ubuntu-branding.patch:
|
535
|
-
+ Add Ubuntu branding to server_tokens.
|
536
|
-
|
537
|
-
-- Colin Watson <cjwatson@ubuntu.com> Fri, 07 Jun 2013 15:41:48 +0100
|
538
|
-
|
539
|
-
nginx (1.4.1-2) unstable; urgency=medium
|
540
|
-
|
541
|
-
[ Kartik Mistry]
|
542
|
-
* Urgency set to medium due to Security and RC bugs.
|
543
|
-
* debian/conf/sites-available/default:
|
544
|
-
+ Fixed typo in listen ipv6only=on (Closes: #707684)
|
545
|
-
|
546
|
-
[ Cyril Lavier ]
|
547
|
-
* debian/control:
|
548
|
-
+ Replaced the build-dep libgd2-noxpm-dev to libgd2-dev as part of
|
549
|
-
the libgd2-{xpm,noxpm}-dev -> libgd2-dev transition.
|
550
|
-
* debian/nginx-naxsi-ui.preinst, debian/nginx-naxsi-ui.postinst,
|
551
|
-
debian/conf/naxsi-ui.conf.1.4.1:
|
552
|
-
+ Added preinst script and renamed the new config file to avoid
|
553
|
-
prompting the user. (Closes: #707291)
|
554
|
-
* debian/rules:
|
555
|
-
+ Made "debian/rules binary" enough to build binary package.
|
556
|
-
(Closes: #708522)
|
557
|
-
|
558
|
-
-- Kartik Mistry <kartik@debian.org> Thu, 06 Jun 2013 12:55:23 +0530
|
559
|
-
|
560
|
-
nginx (1.4.1-1ubuntu2) saucy; urgency=low
|
561
|
-
|
562
|
-
* Rebuild for libgd3.
|
563
|
-
|
564
|
-
-- Colin Watson <cjwatson@ubuntu.com> Mon, 20 May 2013 00:45:10 +0100
|
565
|
-
|
566
|
-
nginx (1.4.1-1ubuntu1) saucy; urgency=low
|
567
|
-
|
568
|
-
* Merge with Debian unstable (LP: #1177919). Remaining changes:
|
569
|
-
- debian/conf/sites-available/default:
|
570
|
-
+ Modify default site configuration file to correct a typo
|
571
|
-
that prevented out-of-the-box usability (LP: #1162177).
|
572
|
-
- debian/patches/ubuntu-branding.patch:
|
573
|
-
+ Add ubuntu branding to server_tokens.
|
574
|
-
* Refresh all patches.
|
575
|
-
|
576
|
-
-- Dmitry Shachnev <mitya57@ubuntu.com> Sat, 11 May 2013 14:47:53 +0400
|
577
|
-
|
578
|
-
nginx (1.4.1-1) unstable; urgency=low
|
579
|
-
|
580
|
-
* New upstream release:
|
581
|
-
+ Fixes arbitrary code execution (CVE-2013-2028).
|
582
|
-
* Uploaded to unstable.
|
583
|
-
* debian/control:
|
584
|
-
+ Updated Standards-Version to 3.9.4
|
585
|
-
|
586
|
-
-- Kartik Mistry <kartik@debian.org> Tue, 07 May 2013 19:53:46 +0530
|
587
|
-
|
588
|
-
nginx (1.4.0-2) experimental; urgency=low
|
589
|
-
|
590
|
-
[ Ondřej Surý ]
|
591
|
-
* debian/modules/:
|
592
|
-
+ Updated nginx-echo, nginx-cache-purge and naxsi modules.
|
593
|
-
+ Removed useless .gitignore, .gitmodules files.
|
594
|
-
|
595
|
-
[ Kartik Mistry ]
|
596
|
-
* debian/modules/nginx-upload:
|
597
|
-
+ This module no longer works with 1.3.x and above. Removed as of now.
|
598
|
-
* debian/modules/ngx-fancyindex:
|
599
|
-
+ Added Fancy Indexes module (Closes: #704210)
|
600
|
-
* debian/copyright:
|
601
|
-
+ Fixed path for modules in Files: field.
|
602
|
-
+ Updated copyright for debian/*
|
603
|
-
* debian/rules:
|
604
|
-
+ Enabled spdy module (Closes: #706195).
|
605
|
-
* debian/control:
|
606
|
-
+ Suggests: fcgiwrap (Closes: #701508).
|
607
|
-
|
608
|
-
[ Cyril Lavier ]
|
609
|
-
* debian/conf/naxsi-ui.conf:
|
610
|
-
+ Added configuration file for nginx-naxsi-ui using SQLite
|
611
|
-
(Closes: #699678).
|
612
|
-
* debian/nginx-naxsi-ui.config, debian/nginx-naxsi-ui.postinst,
|
613
|
-
debian/nginx-naxsi-ui.postrm, debian/nginx-naxsi-ui.prerm,
|
614
|
-
debian/nginx-naxsi-ui.templates:
|
615
|
-
+ Removed these files as they are not necessary anymore with the
|
616
|
-
database engine switching from MySQL to SQLite.
|
617
|
-
* debian/control:
|
618
|
-
+ Removed dependencies against MySQL.
|
619
|
-
* debian/rules, debian/modules/ngx_http_substitutions_filter_module,
|
620
|
-
debian/README.Modules-versions:
|
621
|
-
+ Added http_substitutions_filter module. (Closes: #706456)
|
622
|
-
|
623
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 01 May 2013 10:48:43 +0530
|
624
|
-
|
625
|
-
nginx (1.4.0-1) experimental; urgency=low
|
626
|
-
|
627
|
-
[ Kartik Mistry ]
|
628
|
-
* New upstream release (Closes: #706127).
|
629
|
-
* debian/rules, debian/modules/:
|
630
|
-
+ Removed chunkin-nginx-module as it no longer supported for nginx 1.3.9+
|
631
|
-
+ Updated nginx-lua module to 0.8.0
|
632
|
-
+ Patched nginx-upload module as described in modules/README file.
|
633
|
-
* Refreshed debian/patches/perl-use-dpkg-buildflags.patch
|
634
|
-
* debian/logrotate:
|
635
|
-
+ Set default log to keep for 52 weeks instead of 52 days. Thanks to
|
636
|
-
RjY <rjy@users.sourceforge.net> for patch (Closes: #696440)
|
637
|
-
* debian/rules:
|
638
|
-
+ Added cache purge module to nginx-extras.
|
639
|
-
* debian/control:
|
640
|
-
+ Suggests: nginx-docs. Thanks to colliar <colliar4ever@aol.com> for
|
641
|
-
reporting bug (Closes: #702923)
|
642
|
-
* debian/copyright:
|
643
|
-
+ Updated copyright year.
|
644
|
-
+ Fixed broken license text.
|
645
|
-
|
646
|
-
[ Michael Lustfield ]
|
647
|
-
* debian/conf/sites-available/default:
|
648
|
-
+ Added ipv6_only=on to default server block. (Closes: #700857)
|
649
|
-
+ Added default_server to ipv4 default server block. Now matches ipv6.
|
650
|
-
* debian/rules:
|
651
|
-
+ Removed obsolete --with-md5 and --with-sha1
|
652
|
-
|
653
|
-
-- Kartik Mistry <kartik@debian.org> Thu, 25 Apr 2013 12:51:45 +0530
|
654
|
-
|
655
|
-
nginx (1.2.6-1ubuntu4) saucy; urgency=low
|
656
|
-
|
657
|
-
* debian/patches/ubuntu-branding.patch: Move Ubuntu branding from
|
658
|
-
the numerical version string to the long version (LP: #1174158)
|
659
|
-
|
660
|
-
-- Adam Conrad <adconrad@ubuntu.com> Thu, 09 May 2013 11:50:52 -0600
|
661
|
-
|
662
|
-
nginx (1.2.6-1ubuntu3) raring; urgency=low
|
663
|
-
|
664
|
-
* debian/patches/ubuntu-branding.patch: Add ubuntu branding
|
665
|
-
to server_tokens.
|
666
|
-
|
667
|
-
-- Chuck Short <zulcss@ubuntu.com> Tue, 09 Apr 2013 10:23:26 -0500
|
668
|
-
|
669
|
-
nginx (1.2.6-1ubuntu2) raring; urgency=low
|
670
|
-
|
671
|
-
* debian/conf/sites-available/default:
|
672
|
-
* Modify default site configuration file to correct a typo
|
673
|
-
that prevented out-of-the-box usability (LP: #1162177)
|
674
|
-
|
675
|
-
-- Thomas Ward <teward@ubuntu.com> Fri, 05 Apr 2013 20:22:38 +0100
|
676
|
-
|
677
|
-
nginx (1.2.6-1ubuntu1) raring; urgency=low
|
678
|
-
|
679
|
-
* debian/conf/sites-available/default:
|
680
|
-
* Modify default site default configuration file to bind to IPv6
|
681
|
-
only for IPv6 default listen statement (LP: #1132678)
|
682
|
-
|
683
|
-
-- Thomas Ward <teward@ubuntu.com> Tue, 12 Mar 2013 00:23:02 +0000
|
684
|
-
|
685
|
-
nginx (1.2.6-1) unstable; urgency=low
|
686
|
-
|
687
|
-
[ Kartik Mistry ]
|
688
|
-
* New upstream release.
|
689
|
-
* debian/nginx-common.nginx.init:
|
690
|
-
+ Used log_*_msg instead of echo for better init messages.
|
691
|
-
+ Added patch to check start-stop-daemon exit status, Thanks to
|
692
|
-
Sergey B Kirpichev <skirpichev@gmail.com> (Closes: #695374).
|
693
|
-
* debian/po/ja.po:
|
694
|
-
+ Added new Japanese translation. Thanks to victory <victory.deb@gmail.com>
|
695
|
-
(Closes: #692481).
|
696
|
-
* debian/po/pt_BR.po:
|
697
|
-
+ Added new Brazilian Portuguese translation. Thanks to
|
698
|
-
Adriano Rafael Gomes <adrianorg@gmail.com> (Closes: #692481).
|
699
|
-
|
700
|
-
[ Cyril Lavier ]
|
701
|
-
* debian/rules
|
702
|
-
+ Added RealIP module in nginx-naxsi (Closes: #693302).
|
703
|
-
* debian/modules/nginx-cache-purge/
|
704
|
-
+ Updated nginx-cache-purge module with the 2.0 version.
|
705
|
-
* debian/modules/nginx-lua/
|
706
|
-
+ Updated nginx-lua module with the 0.7.8 version.
|
707
|
-
* debian/modules/nginx-echo/
|
708
|
-
+ Updated the nginx-echo module with the 0.41 version.
|
709
|
-
* debian/modules/headers-more-nginx-module/
|
710
|
-
+ Updated the Headers-more module with the 0.19 version.
|
711
|
-
* debian/modules/README.Modules-versions
|
712
|
-
+ Updated the current version of modules following the updates.
|
713
|
-
|
714
|
-
[ Michael Lustfield ]
|
715
|
-
* debian/conf/sites-available/default
|
716
|
-
+ Uncommented listen lines to make server block default.
|
717
|
-
|
718
|
-
-- Kartik Mistry <kartik@debian.org> Tue, 18 Dec 2012 10:29:18 +0530
|
719
|
-
|
720
|
-
nginx (1.2.4-2) unstable; urgency=low
|
721
|
-
|
722
|
-
* debian/conf/nginx.conf:
|
723
|
-
+ Fixed pid path to /run/nginx.pid in config.
|
724
|
-
* debian/po/*.po, debian/nginx-naxsi-ui.templates, debian/po/templates.pot:
|
725
|
-
+ Fixed ^M characters in template file. Thanks to Christian Perrier
|
726
|
-
<bubulle@debian.org> for help (Closes: #692191, #692335)
|
727
|
-
|
728
|
-
-- Kartik Mistry <kartik@debian.org> Mon, 05 Nov 2012 13:05:34 +0530
|
729
|
-
|
730
|
-
nginx (1.2.4-1) unstable; urgency=low
|
731
|
-
|
732
|
-
[ Michael Lustfield ]
|
733
|
-
* debian/nginx-common.nginx.init
|
734
|
-
+ Added --retry to start-stop-daemon. (Closes: #682360)
|
735
|
-
+ Added $named to Required-Start/Stop. (Closes: #679879)
|
736
|
-
+ Added some other modifications after testing. (LP: #1033856)
|
737
|
-
* debian/rules:
|
738
|
-
+ Added -DFORTIFY_SOURCE=2 -fstack-protector to build flags.
|
739
|
-
(Closes: #680712)
|
740
|
-
* debian/nginx-common.install:
|
741
|
-
+ Moved default docs to /usr/share/nginx/html. (Closes: #1031515)
|
742
|
-
* debian/rules:
|
743
|
-
+ Set prefix to /usr/share/nginx.
|
744
|
-
* debian/po/fr.po
|
745
|
-
+ Updated French translation file. (Closes: #679601)
|
746
|
-
* debian/logrotate:
|
747
|
-
+ Removed semicolon after an fi statement. (Closes: #683870)
|
748
|
-
* debian/copyright:
|
749
|
-
+ Removed trailing slash from File: fields.
|
750
|
-
* Changed /var/run to /run in multiple files. (LP: #1050516)
|
751
|
-
* debian/nginx-common.dirs:
|
752
|
-
+ Added /run to .dirs to avoid conflicts with backports. (LP: #1072641)
|
753
|
-
* debian/nginx-*.postinst:
|
754
|
-
+ Added sites-enabled/available directory checks. (Closes: #688410)
|
755
|
-
- Thanks Andreas Marschke <andreas.marschke@gmail.com>
|
756
|
-
+ Moved the symlink creation to nginx-common.
|
757
|
-
* Updated debconf templates.
|
758
|
-
* conf/sites-available/default:
|
759
|
-
+ Updated root to point at /usr/share/nginx/html instead of www.
|
760
|
-
|
761
|
-
[ Kartik Mistry ]
|
762
|
-
* Acknowledged NMUs (Closes: #681758, #681381)
|
763
|
-
* New upstream release (Closes: #683704)
|
764
|
-
* debian/po/*.po:
|
765
|
-
+ Removed ^M characters from headers.
|
766
|
-
+ Fixed all files with recent unneeded template change.
|
767
|
-
|
768
|
-
-- Kartik Mistry <kartik@debian.org> Tue, 30 Oct 2012 10:10:34 +0530
|
769
|
-
|
770
|
-
nginx (1.2.1-2.2) unstable; urgency=low
|
771
|
-
|
772
|
-
* Non-maintainer upload.
|
773
|
-
* Fix "removes files that were installed by another package":
|
774
|
-
don't remove directories that are owned by (and removed from) nginx-common
|
775
|
-
from nginx-extras.postrm. This seems to have been the idea in commit e30a854
|
776
|
-
("Moved configuration purging to nginx-common.") except that it was added
|
777
|
-
in nginx-common.postrm without being removed in nginx-extras.postrm.
|
778
|
-
Remove nginx-extras.postrm since it's empty after this change.
|
779
|
-
(Closes: #681758)
|
780
|
-
|
781
|
-
-- gregor herrmann <gregoa@debian.org> Sat, 04 Aug 2012 18:13:10 +0200
|
782
|
-
|
783
|
-
nginx (1.2.1-2.1) unstable; urgency=low
|
784
|
-
|
785
|
-
* Non-maintainer upload to deal with the goal of 100% translated
|
786
|
-
debconf templates for 7 languages in wheezy.
|
787
|
-
* Drop nasty ^M characters from the templates file. They break
|
788
|
-
debconf-updatepo and therefore translations. Closes: #681381
|
789
|
-
* As a consequence, fix translations as some of them had been
|
790
|
-
"updated" in the meantime wrt broken templates
|
791
|
-
|
792
|
-
-- Christian Perrier <bubulle@debian.org> Thu, 12 Jul 2012 21:23:57 +0200
|
793
|
-
|
794
|
-
nginx (1.2.1-2) unstable; urgency=medium
|
795
|
-
|
796
|
-
[Cyril Lavier]
|
797
|
-
* Urgency set to medium, security bug in naxsi module, fix via upstream.
|
798
|
-
* debian/modules/naxsi:
|
799
|
-
+ Updated naxsi module to version 0.46-1 fixing the following security
|
800
|
-
issue : potential file disclosure in nx_extract.
|
801
|
-
|
802
|
-
-- Cyril Lavier <cyril.lavier@davromaniak.eu> Wed, 27 Jun 2012 13:52:03 +0200
|
803
|
-
|
804
|
-
nginx (1.2.1-1) unstable; urgency=medium
|
805
|
-
|
806
|
-
[Kartik Mistry]
|
807
|
-
* Urgency set to medium, RC bug fix.
|
808
|
-
* New upstream release (Closes: #677396)
|
809
|
-
* debian/nginx.1:
|
810
|
-
+ Updated with description taken from debian/control.
|
811
|
-
* debian/po/cs.po:
|
812
|
-
+ Added Czech translation of PO debconf template.
|
813
|
-
(Closes: #673120, #678659)
|
814
|
-
* debian/po/da.po:
|
815
|
-
+ Added Danish translation of PO debconf template.
|
816
|
-
(Closes: #674461, #677806)
|
817
|
-
* debian/po/it.po:
|
818
|
-
+ Added Italian translation of PO debconf template. (Closes: #679185)
|
819
|
-
* debian/po/nl.po:
|
820
|
-
+ Added Dutch translation of PO debconf template. (Closes: #675314)
|
821
|
-
* debian/po/pl.po:
|
822
|
-
+ Added Polish translation of PO debconf template. (Closes: #678156)
|
823
|
-
* debian/po/pt.po:
|
824
|
-
+ Added Portuguese translation of PO debconf template.
|
825
|
-
(Closes: #674609, #679149)
|
826
|
-
* debian/po/sk.po:
|
827
|
-
+ Added Slovak translation of PO debconf template. (Closes: #677282)
|
828
|
-
* debian/po/sv.po:
|
829
|
-
+ Added Swedish translation of PO debconf template.
|
830
|
-
(Closes: #675107, #677032)
|
831
|
-
* debian/copyright:
|
832
|
-
+ Removed duplicate Copyright fields.
|
833
|
-
* debian/modules/nginx-lua:
|
834
|
-
+ Updated to latest upstream git tag 0.5.0rc29-6446ee71b8, Fix for worker
|
835
|
-
process crashes (Closes: #674928)
|
836
|
-
* debian/nginx-naxsi-ui.templates, debian/po/templates.pot:
|
837
|
-
+ Updated debconf template after review from l10n-english team.
|
838
|
-
(Closes: #675237)
|
839
|
-
+ Do not add empty line.
|
840
|
-
* debian/po/*.po:
|
841
|
-
+ Refreshed after template update.
|
842
|
-
|
843
|
-
[Cyril Lavier]
|
844
|
-
* debian/rules:
|
845
|
-
+ Added status module to nginx-naxsi. (Closes: #672998)
|
846
|
-
* debian/control:
|
847
|
-
+ Updated nginx-naxsi module list.
|
848
|
-
+ Updated nginx-full module list. (Closes: #677128)
|
849
|
-
* debian/po/de.po:
|
850
|
-
+ Added German translation of PO debconf template.
|
851
|
-
(Closes: #673861, #677790)
|
852
|
-
* debian/po/ru.po:
|
853
|
-
+ Added Russian translation of PO debconf template. (Closes: #674188)
|
854
|
-
* debian/po/es.po:
|
855
|
-
+ Added Spanish translation of PO debconf template. (Closes: #678915)
|
856
|
-
* debian/po/gl.po:
|
857
|
-
+ Added Galician translation of PO debconf template. (Closes: #678910)
|
858
|
-
* debian/nginx-naxsi-ui.postrm, debian/nginx-naxsi-ui.prerm:
|
859
|
-
+ Added postrm and prerm scripts for nginx-naxsi-ui. (Closes: #673787)
|
860
|
-
|
861
|
-
[Michael Lustfield]
|
862
|
-
* debian/nginx-common.preinst:
|
863
|
-
+ Copied install stuff to upgrade in case statement. (LP: #1014506)
|
864
|
-
* debian/rules
|
865
|
-
+ Added --with-pcre-jit to build. (LP: #915344)
|
866
|
-
* debian/conf/sites-available/default:
|
867
|
-
+ Changed default try_files example. (LP: #969207)
|
868
|
-
* debian/nginx-*.postrm:
|
869
|
-
+ Changed a few things so files are only purged on purge. (Closes: #678060)
|
870
|
-
- Thanks Jeroen Dekkers <jeroen@dekkers.ch>
|
871
|
-
|
872
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 27 Jun 2012 09:24:50 +0530
|
873
|
-
|
874
|
-
nginx (1.2.0-1) unstable; urgency=low
|
875
|
-
|
876
|
-
[Cyril Lavier]
|
877
|
-
* New upstream release. (Closes: #670306)
|
878
|
-
+ 1.2.x is stable release now.
|
879
|
-
* debian/modules/chunkin-nginx-module:
|
880
|
-
+ Updated chunkin-nginx-module to v0.23rc2-3-g85eca98.
|
881
|
-
* debian/modules/headers-more-module:
|
882
|
-
+ Updated headers-more-module to v0.17rc1-4-g33a82ed.
|
883
|
-
* debian/modules/nginx-development-kit:
|
884
|
-
+ Updated nginx-development-kit to v0.2.17-7-g24202b4.
|
885
|
-
* debian/modules/nginx-echo:
|
886
|
-
+ Updated nginx-echo to v0.38rc2-7-g080c0a1.
|
887
|
-
* debian/modules/nginx-lua:
|
888
|
-
+ Updated nginx-lua to v0.5.0rc25-5-g8d28785.
|
889
|
-
* debian/modules/nginx-upstream-fair:
|
890
|
-
+ Updated nginx-upstream-fair to a18b409.
|
891
|
-
* debian/modules/nginx-upload-progress:
|
892
|
-
+ Updated nginx-upload-progress to v0.9.0-0-ga788dea.
|
893
|
-
* debian/modules/naxsi:
|
894
|
-
+ Updated naxsi to 0.46
|
895
|
-
* debian/modules/README.Modules-versions:
|
896
|
-
+ Updated versions and URLs for modules.
|
897
|
-
* debian/naxsi-ui-extract, debian/naxsi-ui-intercept,
|
898
|
-
debian/nginx-naxsi-ui.*, debian/naxsi-ui-extract.1,
|
899
|
-
debian/naxsi-ui-intercept.1, debian/rules:
|
900
|
-
+ Added nginx-naxsi-ui package containing the learning daemon
|
901
|
-
and the WebUI.
|
902
|
-
* debian/nginx-common.nginx.default, debian/nginx-common.nginx.init:
|
903
|
-
+ Renamed files to be compliant with the nginx-naxsi-ui package.
|
904
|
-
* debian/po:
|
905
|
-
+ Added needed files for using po-debconf.
|
906
|
-
+ Added French translation.
|
907
|
-
* debian/control:
|
908
|
-
+ Applied the modifications given after the review by Justin Rye.
|
909
|
-
|
910
|
-
[Michael Lustfield]
|
911
|
-
* debian/conf/uwsgi_params:
|
912
|
-
+ Added UWSGI_SCHEME to uwsgi_params. (Closes: #664878)
|
913
|
-
* debian/conf/sites-available/default:
|
914
|
-
+ Added allow directive for ipv6 localhost. (Closes: #664271)
|
915
|
-
|
916
|
-
[Kartik Mistry]
|
917
|
-
* debian/control:
|
918
|
-
+ wrap-and-sort.
|
919
|
-
* debian/copyright:
|
920
|
-
+ Added missing copyrights, minor formatting fixes.
|
921
|
-
* debian/nginx-common.nginx.init:
|
922
|
-
+ Added ulimit for restarts, Thanks to Daniel Roschka
|
923
|
-
<danielroschka@phoenitydawn.de> for patch. (Closes: #673580)
|
924
|
-
* debian/conf/sites-available/default:
|
925
|
-
+ Added patch to fix deprecated "listen" directive, Thanks to
|
926
|
-
Guillaume Plessis <gui@dotdeb.org> for patch. (Closes: #672632)
|
927
|
-
|
928
|
-
-- Kartik Mistry <kartik@debian.org> Mon, 14 May 2012 11:15:00 +0530
|
929
|
-
|
930
|
-
nginx (1.1.19-1) unstable; urgency=high
|
931
|
-
|
932
|
-
[Cyril Lavier]
|
933
|
-
* New upstream release.
|
934
|
-
+ Fixed a buffer overflow in the ngx_http_mp4_module. See: CVE-2012-2089
|
935
|
-
for more details.
|
936
|
-
* debian/copyright:
|
937
|
-
+ Updated licenses.
|
938
|
-
* debian/nginx-extras.postinst, debian/nginx-full.postinst,
|
939
|
-
debian/nginx-light.postinst, debian/nginx-naxsi.postinst:
|
940
|
-
+ Removing the debug markers. (Closes: #667894)
|
941
|
-
* debian/control, debian/rules, debian/copyright,
|
942
|
-
debian/modules/nginx-dav-ext-module:
|
943
|
-
+ Added nginx-dav-ext-module in full and extras.
|
944
|
-
* debian/modules/naxsi:
|
945
|
-
+ Updated naxsi to the SVN snapshot (r280) to fix the licence issue with
|
946
|
-
OpenSSL.
|
947
|
-
|
948
|
-
[Kartik Mistry]
|
949
|
-
* Misc cleanups in debian/control, debian/copyright.
|
950
|
-
|
951
|
-
-- Cyril Lavier <cyril.lavier@davromaniak.eu> Fri, 13 Apr 2012 16:58:59 +0530
|
952
|
-
|
953
|
-
nginx (1.1.18-1) unstable; urgency=low
|
954
|
-
|
955
|
-
[Cyril Lavier]
|
956
|
-
* New upstream release.
|
957
|
-
* New binaries introduced: nginx-naxsi, nginx-naxsi-dbg.
|
958
|
-
* debian/modules/nginx-cache-purge:
|
959
|
-
+ Added nginx cache purge 1.5 to nginx-naxsi.
|
960
|
-
* debian/rules, debian/control, debian/nginx-naxsi.dirs,
|
961
|
-
debian/nginx-naxsi.install, debian/nginx-naxsi.postinst,
|
962
|
-
debian/nginx-naxsi.postrm, debian/nginx-naxsi.prerm,
|
963
|
-
debian/modules/naxsi, debian/conf/naxsi_core.rules,
|
964
|
-
debian/modules/README.Modules-versions, debian/conf/nginx.conf:
|
965
|
-
+ Added nginx-naxsi flavour.
|
966
|
-
+ Added naxsi 0.44 to nginx-naxsi.
|
967
|
-
|
968
|
-
-- Cyril Lavier <cyril.lavier@davromaniak.eu> Thu, 29 Mar 2012 22:43:07 +0530
|
969
|
-
|
970
|
-
nginx (1.1.17-2) unstable; urgency=high
|
971
|
-
|
972
|
-
[Cyril Lavier]
|
973
|
-
* debian/control:
|
974
|
-
+ Added build dependency to dpkg-dev (>= 1.15.7). (Closes: #664212)
|
975
|
-
* debian/patches/perl-use-dpkg-buildflags.patch:
|
976
|
-
+ Added patch to harden flags for perl module (Thanks to Simon Ruderich
|
977
|
-
for the patch). (Closes: #664090)
|
978
|
-
|
979
|
-
[Kartik Mistry]
|
980
|
-
* Set urgency due to fix for security and RC bugs with 1.17.1-1 upload.
|
981
|
-
|
982
|
-
-- Cyril Lavier <cyril.lavier@davromaniak.eu> Sun, 18 Mar 2012 09:31:19 +0530
|
983
|
-
|
984
|
-
nginx (1.1.17-1) unstable; urgency=medium
|
985
|
-
|
986
|
-
[Kartik Mistry]
|
987
|
-
* New upstream release. (Closes: #664137)
|
988
|
-
+ Fixed malformed HTTP responses. See: CVE-2012-1180 for more details.
|
989
|
-
* Set urgency to medium due to security issue.
|
990
|
-
|
991
|
-
[Cyril Lavier]
|
992
|
-
* debian/rules:
|
993
|
-
+ Set NUMJOBS to 1 if no value is given
|
994
|
-
+ Added Auth PAM module to nginx-extras
|
995
|
-
+ Enable hardened flags for perl module (Thanks to Simon Ruderich for
|
996
|
-
the patch) (Closes: #664090).
|
997
|
-
* debian/conf/sites-available/default:
|
998
|
-
+ Added the fastcgi_pass for php5-fpm. (Closes: #662997)
|
999
|
-
* debian/nginx-common.postrm, debian/rules, debian/nginx-common.postinst,
|
1000
|
-
debian/nginx-common.prerm, debian/nginx-common.service:
|
1001
|
-
+ Added the systemd support. Thanks to Michael Stapelberg for the patch.
|
1002
|
-
(Closes: #662799)
|
1003
|
-
|
1004
|
-
-- Kartik Mistry <kartik@debian.org> Fri, 16 Mar 2012 10:27:38 +0530
|
1005
|
-
|
1006
|
-
nginx (1.1.16-1) unstable; urgency=low
|
1007
|
-
|
1008
|
-
[Cyril Lavier]
|
1009
|
-
* Modified the parallel build to avoid random FTBFS in Ubuntu.
|
1010
|
-
* New upstream release.
|
1011
|
-
* debian/modules:
|
1012
|
-
+ Updated nginx-upload-progress to 0.8.3-2-g03cbf1f.
|
1013
|
-
* debian/control:
|
1014
|
-
+ Added myself as uploader.
|
1015
|
-
+ Added libpam0g-dev to Build-Depends.
|
1016
|
-
+ Use wrap-and-sort to wrap control file fields.
|
1017
|
-
|
1018
|
-
[Michael Lustfield]
|
1019
|
-
* debian/nginx-common.postinst:
|
1020
|
-
+ Changed postinst to not change permissions on all log files.
|
1021
|
-
(Closes: #658492)
|
1022
|
-
* debian/rules:
|
1023
|
-
+ Added Auth PAM module at debian/modules/nginx-auth-pam. (Closes: #660408)
|
1024
|
-
|
1025
|
-
[Kartik Mistry]
|
1026
|
-
* debian/control:
|
1027
|
-
+ Added conflict between -dbg packages as seen by Lintian.
|
1028
|
-
+ Updated Standards-Version to 3.9.3
|
1029
|
-
* debian/copyright:
|
1030
|
-
+ Updated for copyright-format 1.0
|
1031
|
-
+ Updated upstream copyright year and details.
|
1032
|
-
* debian/rules:
|
1033
|
-
+ Moved nginx-auth-pam module to nginx-full package.
|
1034
|
-
|
1035
|
-
-- Kartik Mistry <kartik@debian.org> Sun, 04 Mar 2012 10:31:21 +0530
|
1036
|
-
|
1037
|
-
nginx (1.1.14-1) unstable; urgency=low
|
1038
|
-
|
1039
|
-
[Cyril Lavier]
|
1040
|
-
* New upstream release.
|
1041
|
-
* debian/rules:
|
1042
|
-
+ Resolved the lintian errors "unstripped-binary-or-object" with a
|
1043
|
-
cleaner correction (Thanks to Steven Chamberlain for the patch).
|
1044
|
-
+ Added a check on the parallel building to force NUMJOBS to 1 if
|
1045
|
-
the value 0 is given.
|
1046
|
-
* debian/modules:
|
1047
|
-
+ Updated nginx-lua module to version 0.4.1.
|
1048
|
-
|
1049
|
-
[Kartik Mistry]
|
1050
|
-
* debian/rules, debian/control, debian/copyright,
|
1051
|
-
debian/modules/nginx-upload-module:
|
1052
|
-
+ Added Upload module to nginx-extras, updated long description and
|
1053
|
-
copyright. (Closes: #654593)
|
1054
|
-
* debian/modules/README.modules:
|
1055
|
-
+ Added Homepage information for some modules.
|
1056
|
-
* debian/rules:
|
1057
|
-
+ Enable hardened build flags, Thanks to Moritz Muehlenhoff for patch.
|
1058
|
-
(Closes: #658186)
|
1059
|
-
|
1060
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 01 Feb 2012 17:50:05 +0530
|
1061
|
-
|
1062
|
-
nginx (1.1.12-1) unstable; urgency=low
|
1063
|
-
|
1064
|
-
[Kartik Mistry]
|
1065
|
-
* debian/control:
|
1066
|
-
+ Set myself as Maintainer, Jose Parrella as Uploaders with approval from
|
1067
|
-
team.
|
1068
|
-
* debian/copyright:
|
1069
|
-
+ Fixed DEP5 URL.
|
1070
|
-
+ Updated debian/* copyright.
|
1071
|
-
* debian/modules:
|
1072
|
-
+ Updated nginx-lua module to version 0.3.1rc43
|
1073
|
-
|
1074
|
-
[Cyril Lavier]
|
1075
|
-
* New upstream release.
|
1076
|
-
* debian/conf/sites-available/default:
|
1077
|
-
+ Added a / in the alias directive. (Closes: #653160)
|
1078
|
-
* debian/rules:
|
1079
|
-
+ Added necessary lines for parallel building.
|
1080
|
-
|
1081
|
-
-- Kartik Mistry <kartik@debian.org> Sun, 01 Jan 2012 17:21:02 +0530
|
1082
|
-
|
1083
|
-
nginx (1.1.11-1) unstable; urgency=low
|
1084
|
-
|
1085
|
-
[Kartik Mistry]
|
1086
|
-
* New upstream release.
|
1087
|
-
* debian/control:
|
1088
|
-
+ Set priority to extra for nginx-light and nginx-extras binaries
|
1089
|
-
(Policy: Section 2.5)
|
1090
|
-
* debian/patches/607418-ipv6-addresses.diff:
|
1091
|
-
+ Removed. Merged upstream with 1.1.9 release.
|
1092
|
-
* debian/copyright:
|
1093
|
-
+ Updated upstream copyright year, updated Michael's email address, misc
|
1094
|
-
changes for format.
|
1095
|
-
|
1096
|
-
[Michael Lustfield]
|
1097
|
-
* debian/conf/fastcgi_params:
|
1098
|
-
+ Changed $server_https to $https per new feature in 1.1.11.
|
1099
|
-
* debian/conf/nginx.conf:
|
1100
|
-
+ Removed map for $server_https as it's no longer needed.
|
1101
|
-
|
1102
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 14 Dec 2011 09:45:40 +0530
|
1103
|
-
|
1104
|
-
nginx (1.1.8-2) unstable; urgency=low
|
1105
|
-
|
1106
|
-
* debian/modules/chunkin-nginx-module:
|
1107
|
-
+ Reinclude HttpChunkin Module with new upstream version (closes: #638814)
|
1108
|
-
* debian/control:
|
1109
|
-
+ Add myself to uploaders list.
|
1110
|
-
|
1111
|
-
-- Dmitry E. Oboukhov <unera@debian.org> Thu, 24 Nov 2011 14:16:50 +0530
|
1112
|
-
|
1113
|
-
nginx (1.1.8-1) unstable; urgency=low
|
1114
|
-
|
1115
|
-
[Kartik Mistry]
|
1116
|
-
* New upstream release.
|
1117
|
-
* debian/modules/chunkin-nginx-module:
|
1118
|
-
+ Removed as of now, as it breaks with Perl 5.14 (Closes: #649061)
|
1119
|
-
|
1120
|
-
[Michael Lustfield]
|
1121
|
-
* debian/control:
|
1122
|
-
+ Added Map module to nginx-light modules list.
|
1123
|
-
* debian/rules:
|
1124
|
-
+ Removed --without-http_map_module form nginx-light.
|
1125
|
-
* debian/nginx-common.install:
|
1126
|
-
+ Changed ufw profile installation (LP: #825349).
|
1127
|
-
- debian/ufw.profile -> debian/ufw/nginx.
|
1128
|
-
* debian/nginx-common.preinst:
|
1129
|
-
+ Cleanup of moved nginx profile.
|
1130
|
-
* debian/conf/nginx.conf:
|
1131
|
-
+ Added a default map for $server_https (on|off).
|
1132
|
-
* debian/conf/fastcgi_params:
|
1133
|
-
+ Pass HTTPS so $_SERVER['HTTPS'] is set (LP: #857831).
|
1134
|
-
* debian/conf/mime.types:
|
1135
|
-
+ Added json type (LP: #883440).
|
1136
|
-
* debian/conf/sites-available/default:
|
1137
|
-
+ Added notes about PHP (Closes: #642995).
|
1138
|
-
+ Changed location /doc from root to alias.
|
1139
|
-
+ Changed location /doc to /doc/ for people that don't bother reading or
|
1140
|
-
learning anything about Nginx configuration files (LP: #840358).
|
1141
|
-
|
1142
|
-
-- Kartik Mistry <kartik@debian.org> Fri, 18 Nov 2011 23:44:00 +0530
|
1143
|
-
|
1144
|
-
nginx (1.1.4-2) unstable; urgency=low
|
1145
|
-
|
1146
|
-
[Kartik Mistry]
|
1147
|
-
* debian/modules:
|
1148
|
-
+ Updated nginx-upload-progress module, Thanks to upstream for fixing issue
|
1149
|
-
that FTBFS nginx on kFreeBSD-* archs.
|
1150
|
-
+ Updated nginx-lua module to latest upstream.
|
1151
|
-
|
1152
|
-
-- Kartik Mistry <kartik@debian.org> Mon, 26 Sep 2011 10:17:04 +0530
|
1153
|
-
|
1154
|
-
nginx (1.1.4-1) unstable; urgency=low
|
1155
|
-
|
1156
|
-
[Kartik Mistry]
|
1157
|
-
* New upstream release.
|
1158
|
-
* debian/rules:
|
1159
|
-
+ Added 'HTTPStubStatus' module in nginx-light also (Closes: #639661).
|
1160
|
-
+ Added 'HTTP MP4' module in nginx-extras. (Closes: #642022).
|
1161
|
-
* Add new modules, Thanks to Dmitry E. Oboukhov <unera@debian.org>:
|
1162
|
-
+ NginxHttpHeadersMore Module (closes: #638820).
|
1163
|
-
+ HttpChunkin Module (closes: #638814).
|
1164
|
-
* Renamed debian/modules/versions to debian/modules/README.modules-version,
|
1165
|
-
added missing homepage and version information.
|
1166
|
-
|
1167
|
-
-- Kartik Mistry <kartik@debian.org> Sun, 25 Sep 2011 13:44:48 +0530
|
1168
|
-
|
1169
|
-
nginx (1.1.2-1) unstable; urgency=low
|
1170
|
-
|
1171
|
-
[ Kartik Mistry ]
|
1172
|
-
* New upstream release
|
1173
|
-
* debian/control:
|
1174
|
-
+ Added missing 'http-push' module in long description of nginx-extras.
|
1175
|
-
(Closes: #638924)
|
1176
|
-
+ Removed 'File AIO' module from description, which we don't provide.
|
1177
|
-
(Closes: #639360)
|
1178
|
-
+ Added 'HTTP Sub Module' in long description of nginx-extras, nginx-full.
|
1179
|
-
+ Updated Breaks/Replaces fields.
|
1180
|
-
|
1181
|
-
[ Michael Lustfield ]
|
1182
|
-
* debian/copyright:
|
1183
|
-
+ Updated email address for Michael Lustfield
|
1184
|
-
* debian/control:
|
1185
|
-
+ Updated email address for Michael Lustfield
|
1186
|
-
+ Updated Breaks on nginx-common to address conflicting versions
|
1187
|
-
|
1188
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 07 Sep 2011 12:15:36 +0530
|
1189
|
-
|
1190
|
-
nginx (1.1.0-1) unstable; urgency=low
|
1191
|
-
|
1192
|
-
[ Kartik Mistry ]
|
1193
|
-
* New upstream release
|
1194
|
-
* debian/control:
|
1195
|
-
+ Added 'Upload Progress' module in long description of nginx-extras
|
1196
|
-
(Closes: #635313)
|
1197
|
-
* debian/rules, debian/modules:
|
1198
|
-
+ Removed deprecated module: nginx-secure-download
|
1199
|
-
* debian/modules:
|
1200
|
-
+ Updated nginx-lua module to version: v0.2.1rc2
|
1201
|
-
+ Updated nginx-echo module to version: v0.37rc1
|
1202
|
-
|
1203
|
-
-- Kartik Mistry <kartik@debian.org> Tue, 02 Aug 2011 20:06:43 +0530
|
1204
|
-
|
1205
|
-
nginx (1.0.5-1) unstable; urgency=low
|
1206
|
-
|
1207
|
-
* New upstream release
|
1208
|
-
* debian/control:
|
1209
|
-
+ nginx Depends on either nginx-full or nginx-light, Thanks to
|
1210
|
-
Hans van Kranenburg <hans.van.kranenburg@mendix.com> (Closes: #633879)
|
1211
|
-
* debian/copyright:
|
1212
|
-
+ Updated to latest DEP-5 specification
|
1213
|
-
+ Added some missing copyrights for modules
|
1214
|
-
+ Updated copyright years
|
1215
|
-
|
1216
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 20 Jul 2011 10:16:45 +0530
|
1217
|
-
|
1218
|
-
nginx (1.0.4-1) unstable; urgency=low
|
1219
|
-
|
1220
|
-
* New upstream release
|
1221
|
-
* debian/*.lintian-overrides, debian/rules:
|
1222
|
-
+ Removed unused lintian for missing manpages
|
1223
|
-
|
1224
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 01 Jun 2011 19:12:25 +0530
|
1225
|
-
|
1226
|
-
nginx (1.0.1-1) unstable; urgency=low
|
1227
|
-
|
1228
|
-
* New upstream release
|
1229
|
-
* debian/rules:
|
1230
|
-
+ Removed if surrounding copy of man/ as it is required for builds.
|
1231
|
-
+ Added nginx-upload-progress to nginx-extras. (Closes: #618306)
|
1232
|
-
+ Added nginx-secure-downloads to nginx-extras. (Closes: #622268)
|
1233
|
-
+ Added --prefix to configure command. (Closes: #619482)
|
1234
|
-
* debian/modules:
|
1235
|
-
+ Added nginx-upload-progress/*.
|
1236
|
-
+ Added nginx-secure-download/*.
|
1237
|
-
+ Updated nginx-lua/*.
|
1238
|
-
+ Updated versions.
|
1239
|
-
* debian/control:
|
1240
|
-
+ Added libmhash-dev build dependency.
|
1241
|
-
+ Updated Standards-Version to 3.9.1.
|
1242
|
-
|
1243
|
-
-- Michael Lustfield <mtecknology@ubuntu.com> Mon, 09 May 2011 00:36:54 +0530
|
1244
|
-
|
1245
|
-
nginx (1.0.0-2) unstable; urgency=low
|
1246
|
-
|
1247
|
-
* debian/rules:
|
1248
|
-
+ Removed --with-file-aio support. Fixed FTBFS on kFreeBSD-* arch
|
1249
|
-
(Closes: #621882)
|
1250
|
-
|
1251
|
-
-- Kartik Mistry <kartik@debian.org> Sat, 16 Apr 2011 13:47:58 +0530
|
1252
|
-
|
1253
|
-
nginx (1.0.0-1) unstable; urgency=low
|
1254
|
-
|
1255
|
-
[Kartik Mistry]
|
1256
|
-
* New upstream release:
|
1257
|
-
+ Removed debian/patches/609343-log-time-iso8601.diff, merged upstream.
|
1258
|
-
* debian/rules:
|
1259
|
-
+ Fixed: FTBFS on sparc64, detects sparc64 as sparc. Thanks to
|
1260
|
-
Aurelien Jarno <aurel32@debian.org> (Closes: #617924)
|
1261
|
-
* debian/watch:
|
1262
|
-
+ Updated for 1.x.x release
|
1263
|
-
|
1264
|
-
[Michael Lustfield]
|
1265
|
-
* debian/rules:
|
1266
|
-
+ Added Echo module back to nginx-full. (LP: #735622)
|
1267
|
-
+ Moved nginx-push-0.96 to nginx-http-push.
|
1268
|
-
* debian/modules:
|
1269
|
-
+ Updated nginx-development-kit.
|
1270
|
-
+ Updated nginx-echo.
|
1271
|
-
+ Updated nginx-http-push.
|
1272
|
-
+ Updated nginx-lua.
|
1273
|
-
+ Updated nginx-upstream-fair.
|
1274
|
-
+ Added versions to track module versions.
|
1275
|
-
* debian/conf/fastcgi_params:
|
1276
|
-
+ Changed $document_root$fastcgi_script_name to $request_filename.
|
1277
|
-
|
1278
|
-
-- Kartik Mistry <kartik@debian.org> Thu, 14 Apr 2011 10:41:08 +0530
|
1279
|
-
|
1280
|
-
nginx (0.8.54-4) unstable; urgency=low
|
1281
|
-
|
1282
|
-
[Micheal Lustfield]
|
1283
|
-
* debian/nginx-{full,light,extras}.default:
|
1284
|
-
+ Added comment about alternative to ULIMIT.
|
1285
|
-
* debian/nginx-{full,light,extras}.init.d:
|
1286
|
-
+ Added quotes around a test variable. (Closes: #610946, LP: #699736)
|
1287
|
-
* debian/patches/609343-log-time-iso8601.diff:
|
1288
|
-
+ Added patch to add $time_iso8601 variable to logs. (Closes: #609343)
|
1289
|
-
* Clean up old logrotate files. (Closes: #608983, Closes: #610289)
|
1290
|
-
+ Added Files:
|
1291
|
-
- debian/nginx-common.preinst
|
1292
|
-
+ Modified Files:
|
1293
|
-
- debian/rules
|
1294
|
-
+ Moved debian/nginx-common.logrotate to debian/logrotate.
|
1295
|
-
* Added common files to nginx-common package. (Closes: #610290)
|
1296
|
-
+ Removed Files:
|
1297
|
-
- debian/nginx-full.dirs
|
1298
|
-
- debian/nginx-light.dirs
|
1299
|
-
- debian/nginx-full.install
|
1300
|
-
- debian/nginx-light.install
|
1301
|
-
- debian/nginx-extras.install
|
1302
|
-
- debian/nginx.*
|
1303
|
-
+ Added Files:
|
1304
|
-
- debian/nginx-common.default
|
1305
|
-
- debian/nginx-common.dirs
|
1306
|
-
- debian/nginx-common.init.d
|
1307
|
-
- debian/nginx-common.install
|
1308
|
-
- debian/nginx-common.manpages
|
1309
|
-
- debian/logrotate
|
1310
|
-
+ Modified Files:
|
1311
|
-
- debian/nginx-extras.dirs
|
1312
|
-
- debian/control
|
1313
|
-
- debian/rules
|
1314
|
-
* debian/nginx-*.install: (Closes: #609797)
|
1315
|
-
+ Removed NEWS.Debian from nginx-{full,light,extras}.install.
|
1316
|
-
+ Added NEWS.Debian to nginx-common.install.
|
1317
|
-
* nginx-common.postinst:
|
1318
|
-
+ Enforce /var/log/nginx mode and user:group. (Closes: #610983)
|
1319
|
-
+ Enforce /var/log/nginx/*.log mode and user:group. (Closes: #612832)
|
1320
|
-
* debian/rules:
|
1321
|
-
+ Added --with-file-aio to nginx-extras. (Closes: #613175)
|
1322
|
-
+ Removed split clients and user id modules from nginx-light.
|
1323
|
-
* debian/conf/sites-available/default:
|
1324
|
-
+ Fixed a minor typo ( s/Quickstart/QuickStart/ ). (Closes: #613355)
|
1325
|
-
* debian/conf/mime.types:
|
1326
|
-
+ Changed xml type to application/xhtml+xml. (Closes: #613851)
|
1327
|
-
* debian/help/docs/fcgiwrap:
|
1328
|
-
+ Removed Ubuntu specific line in docs. (Closes: #614987)
|
1329
|
-
* debian/conf/sites-available/default:
|
1330
|
-
+ Fixed a pointer to a file. (Closes: #614980)
|
1331
|
-
|
1332
|
-
[Kartik Mistry]
|
1333
|
-
* debian/*.lintian-overrides:
|
1334
|
-
+ Add Lintian overrides for nginx man page. We've manpage in nginx-common
|
1335
|
-
binary
|
1336
|
-
|
1337
|
-
-- Michael Lustfield <mtecknology@ubuntu.com> Thu, 03 Mar 2011 23:39:07 +0530
|
1338
|
-
|
1339
|
-
nginx (0.8.54-3) unstable; urgency=low
|
1340
|
-
|
1341
|
-
* debian/control:
|
1342
|
-
+ Added Breaks: and Replaces: to nginx packages. (Closes: #609254)
|
1343
|
-
* debian/rules:
|
1344
|
-
+ Adding SSL support to nginx-light. (Closes: #609134)
|
1345
|
-
+ Adding HTTP Addition module to nginx-full and nginx-extras. (Closes: #609411)
|
1346
|
-
+ Added HTTP Push module to nginx-extras. (LP: #694456)
|
1347
|
-
|
1348
|
-
-- Michael Lustfield <mtecknology@ubuntu.com> Tue, 11 Jan 2011 05:27:39 -0600
|
1349
|
-
|
1350
|
-
nginx (0.8.54-2) unstable; urgency=low
|
1351
|
-
|
1352
|
-
* Do not install nginx.8 man page in debug packages (Closes: #608633)
|
1353
|
-
|
1354
|
-
-- Kartik Mistry <kartik@debian.org> Sun, 02 Jan 2011 18:46:03 +0530
|
1355
|
-
|
1356
|
-
nginx (0.8.54-1) unstable; urgency=low
|
1357
|
-
|
1358
|
-
[ Michael Lustfield ]
|
1359
|
-
* Added ipv6 patch. (Closes: #607418)
|
1360
|
-
+ Edited files:
|
1361
|
-
- src/http/ngx_http_request.c
|
1362
|
-
* Added ulmit patches. (Closes: #606094)
|
1363
|
-
+ Added files:
|
1364
|
-
- debian/nginx-full.default
|
1365
|
-
- debian/nginx-light.default
|
1366
|
-
- debian/nginx-extras.default
|
1367
|
-
+ Edited files:
|
1368
|
-
- debian/nginx-full.init.d
|
1369
|
-
- debian/nginx-light.init.d
|
1370
|
-
- debian/nginx-extras.init.d
|
1371
|
-
* Added perl module to nginx-extras. (Closes: #598461)
|
1372
|
-
+ debian/rules:
|
1373
|
-
- Added --with-http_perl_module to nginx-extras.
|
1374
|
-
+ debian/control:
|
1375
|
-
- Added libperl-dev build dependency.
|
1376
|
-
+ debian/nginx-extras.install:
|
1377
|
-
- Added perl install files
|
1378
|
-
+ debian/nginx-extras.dirs:
|
1379
|
-
- Added directory to install perl files.
|
1380
|
-
* debian/rules:
|
1381
|
-
+ Added ifeq to handle nginx.8 (man page) if it exists in the source.
|
1382
|
-
* debian/control:
|
1383
|
-
+ Added descriptions to make clear the differences between nginx packages.
|
1384
|
-
* Removed patches:
|
1385
|
-
+ debian/patches/nginx-echo.diff
|
1386
|
-
- Put source into debian/patches/.
|
1387
|
-
+ debian/patches/nginx-upstream-fair.diff
|
1388
|
-
- Put source into debian/patches/.
|
1389
|
-
+ debian/patches/dlopen.diff
|
1390
|
-
- Patch no longer relevant.
|
1391
|
-
* Added modules:
|
1392
|
-
+ debian/modules/nginx-development-kit
|
1393
|
-
+ debian/modules/nginx-upstream-fair
|
1394
|
-
+ debian/modules/nginx-echo
|
1395
|
-
+ debian/modules/nginx-lua
|
1396
|
-
* Split Nginx into multiple variations of the package.
|
1397
|
-
+ Added files for nginx-full:
|
1398
|
-
- debian/nginx-full.install
|
1399
|
-
- debian/nginx-full.dirs
|
1400
|
-
- debian/nginx-full.logrotate
|
1401
|
-
- debian/nginx-full.init.d
|
1402
|
-
- debian/nginx-full.postinst
|
1403
|
-
- debian/nginx-full.prerm
|
1404
|
-
- debian/nginx-full.postrm
|
1405
|
-
+ Added files for nginx-light:
|
1406
|
-
- debian/nginx-light.install
|
1407
|
-
- debian/nginx-light.dirs
|
1408
|
-
- debian/nginx-light.logrotate
|
1409
|
-
- debian/nginx-light.init.d
|
1410
|
-
- debian/nginx-light.postinst
|
1411
|
-
- debian/nginx-light.prerm
|
1412
|
-
- debian/nginx-light.postrm
|
1413
|
-
+ Added files for nginx-extras:
|
1414
|
-
- debian/nginx-extras.install
|
1415
|
-
- debian/nginx-extras.dirs
|
1416
|
-
- debian/nginx-extras.logrotate
|
1417
|
-
- debian/nginx-extras.init.d
|
1418
|
-
- debian/nginx-extras.postinst
|
1419
|
-
- debian/nginx-extras.prerm
|
1420
|
-
- debian/nginx-extras.postrm
|
1421
|
-
+ Removed files for nginx:
|
1422
|
-
- debian/nginx.install
|
1423
|
-
- debian/nginx.dirs
|
1424
|
-
- debian/nginx.logrotate
|
1425
|
-
- debian/init.d
|
1426
|
-
- debian/postinst
|
1427
|
-
- debian/prerm
|
1428
|
-
- debian/postrm
|
1429
|
-
+ Updated debian/rules:
|
1430
|
-
- Modified rules to create extra packages.
|
1431
|
-
+ Updated debian/control:
|
1432
|
-
- Added packages for nginx-{full,light,extras}.
|
1433
|
-
- Added packages for nginx-{full,light,extras}-dbg.
|
1434
|
-
- Changed nginx to a dummy package selecting nginx-full.
|
1435
|
-
|
1436
|
-
[Kartik Mistry]
|
1437
|
-
* debian/control:
|
1438
|
-
+ Added doc section for nginx-doc
|
1439
|
-
+ Wrapped some long descriptions, updated short descriptions
|
1440
|
-
+ Added perl:Depends for nginx-extras
|
1441
|
-
* debian/rules:
|
1442
|
-
+ Fixed dh_installchangelogs, dh_compress
|
1443
|
-
|
1444
|
-
-- Michael Lustfield <mtecknology@ubuntu.com> Thu, 30 Dec 2010 14:15:26 +0530
|
1445
|
-
|
1446
|
-
nginx (0.8.53-2) unstable; urgency=low
|
1447
|
-
|
1448
|
-
[Kartik Mistry]
|
1449
|
-
* debian/conf/mime.types:
|
1450
|
-
+ Added html5 codecs support (Closes: #605212)
|
1451
|
-
* debian/conf/fastcgi_params:
|
1452
|
-
+ Fixed typo (Closes: #605582)
|
1453
|
-
|
1454
|
-
[Michael Lustfield]
|
1455
|
-
* debian/conf/nginx.conf:
|
1456
|
-
+ Reduced worker_connections to 768 (Closes: #605529)
|
1457
|
-
* Add an nginx site management script to nginx-doc. (Closes: #593580)
|
1458
|
-
+ debian/help/examples/nginx_modsite: Added.
|
1459
|
-
* debian/nginx.logrotate:
|
1460
|
-
+ Added prerotate chunk for awstats. (Closes: #590098)
|
1461
|
-
* debian/copyright:
|
1462
|
-
+ Added Michael Lustfield
|
1463
|
-
* Created nginx-doc:
|
1464
|
-
+ Added 'Package: nginx-doc' section to debian/control
|
1465
|
-
+ Moved debian/nginx.examples -> debian/nginx-doc.examples
|
1466
|
-
+ Moved debian/nginx.docs -> debian/nginx-doc.docs
|
1467
|
-
|
1468
|
-
-- Kartik Mistry <kartik@debian.org> Mon, 06 Dec 2010 11:26:22 +0530
|
1469
|
-
|
1470
|
-
nginx (0.8.53-1) unstable; urgency=low
|
1471
|
-
|
1472
|
-
[Kartik Mistry]
|
1473
|
-
* debian/control:
|
1474
|
-
+ Added Michael Lustfield as co-maintainer
|
1475
|
-
* nginx.conf:
|
1476
|
-
+ No need to use regex in gzip_disable for msie6, Thanks to António P. P.
|
1477
|
-
Almeida <appa@perusio.net> (Closes: #592147)
|
1478
|
-
* conf/sites-available/default:
|
1479
|
-
+ Fixed typo for "include fastcgi", Thanks to Mostafa Ghadamyari
|
1480
|
-
<nginx@gigfa.com> (Closes: #593142, #593143)
|
1481
|
-
* debian/patches/fix_reloading_ipv6.diff:
|
1482
|
-
+ Removed, merged upstream
|
1483
|
-
* debian/init.d:
|
1484
|
-
+ Added fix to control nginx by user in a simple way by setting DAEMON
|
1485
|
-
variable to an invalid name in /etc/default/nginx. Patch by Toni Mueller
|
1486
|
-
<support@oeko.net> (Closes: #594598)
|
1487
|
-
* debian/NEWS.Debian:
|
1488
|
-
+ Updated news for 0.8.x as stable branch
|
1489
|
-
|
1490
|
-
[Michael Lustfield]
|
1491
|
-
* New upstream release (Closes: #602970)
|
1492
|
-
+ 0.8.x branch is declared stable by upstream now
|
1493
|
-
* Add a UFW profile set:
|
1494
|
-
+ debian/nginx.ufw.profile: Added.
|
1495
|
-
+ debian/control: nginx: Suggests ufw.
|
1496
|
-
+ debian/dirs: Add 'etc/ufw/applications.d'
|
1497
|
-
+ debian/rules: Add install rule for the nginx UFW profile.
|
1498
|
-
* Moved debian/dirs to debian/nginx.dirs
|
1499
|
-
* Added types_hash_max_size to nginx.conf
|
1500
|
-
* Install simple default index.html file (Closes: #581416)
|
1501
|
-
+ debian/dirs: Add 'usr/share/nginx/www'.
|
1502
|
-
+ debian/nginx.install: Add 'html/* usr/share/nginx/www'.
|
1503
|
-
* debian/patches/nginx-echo.diff:
|
1504
|
-
+ Added Echo module
|
1505
|
-
* Added files for nginx.docs
|
1506
|
-
- /usr/share/doc/nginx/
|
1507
|
-
+ debian/help/docs/fcgiwrap
|
1508
|
-
+ debian/help/docs/php
|
1509
|
-
+ debian/help/docs/support-irc
|
1510
|
-
+ debian/help/docs/upstream
|
1511
|
-
* Added files for nginx.examples
|
1512
|
-
- /usr/share/doc/nginx/examples/
|
1513
|
-
+ debian/help/docs/drupal
|
1514
|
-
+ debian/help/docs/http
|
1515
|
-
+ debian/help/docs/mail
|
1516
|
-
+ debian/help/docs/mailman
|
1517
|
-
+ debian/help/docs/nginx.conf
|
1518
|
-
+ debian/help/docs/virtual_hosts
|
1519
|
-
+ debian/help/docs/wordpress
|
1520
|
-
* debian/conf/:
|
1521
|
-
+ Removed excess spaces
|
1522
|
-
+ Added tabs where appropriate
|
1523
|
-
+ Added SCRIPT_FILENAME to fastcgi_params
|
1524
|
-
|
1525
|
-
-- Kartik Mistry <kartik@debian.org> Sat, 27 Nov 2010 21:04:02 +0530
|
1526
|
-
|
1527
|
-
nginx (0.7.67-3) unstable; urgency=low
|
1528
|
-
|
1529
|
-
* debian/rules:
|
1530
|
-
+ Readded the configure option --with-mail_ssl_module, Thanks to Roland
|
1531
|
-
Rosenfeld <roland@spinnaker.de> (Closes: #590815)
|
1532
|
-
* debian/control:
|
1533
|
-
+ Updated Standards-Version to 3.9.1 (no changes needed)
|
1534
|
-
|
1535
|
-
-- Kartik Mistry <kartik@debian.org> Thu, 29 Jul 2010 21:41:52 +0530
|
1536
|
-
|
1537
|
-
nginx (0.7.67-2) unstable; urgency=low
|
1538
|
-
|
1539
|
-
* debian/conf/sites-available/default:
|
1540
|
-
+ Removed reference to SSLv2 protocol (Closes: #589139)
|
1541
|
-
* debian/control:
|
1542
|
-
+ Updated Standards-Version to 3.9.0
|
1543
|
-
* debian/copyright:
|
1544
|
-
+ Don't point to BSD license file, included exact upstream version of
|
1545
|
-
license text
|
1546
|
-
+ Added missing copyright owner for contrib/ scripts
|
1547
|
-
+ debian/* license is same as upstream now as discussed with co-maintainers
|
1548
|
-
|
1549
|
-
-- Kartik Mistry <kartik@debian.org> Mon, 19 Jul 2010 10:36:32 +0530
|
1550
|
-
|
1551
|
-
nginx (0.7.67-1) unstable; urgency=low
|
1552
|
-
|
1553
|
-
* New upstream release
|
1554
|
-
|
1555
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 16 Jun 2010 01:26:51 +0530
|
1556
|
-
|
1557
|
-
nginx (0.7.65-7) unstable; urgency=low
|
1558
|
-
|
1559
|
-
[Kartik Mistry]
|
1560
|
-
* debian/rules:
|
1561
|
-
+ Enabled HTTPSubModule module in configure (Closes: #584828)
|
1562
|
-
+ Arranged configure options in better manner
|
1563
|
-
|
1564
|
-
-- Kartik Mistry <kartik@debian.org> Mon, 07 Jun 2010 14:33:24 +0530
|
1565
|
-
|
1566
|
-
nginx (0.7.65-6) unstable; urgency=low
|
1567
|
-
|
1568
|
-
[Kartik Mistry]
|
1569
|
-
* debian/README.Debian:
|
1570
|
-
+ Fixed typo and somewhat better wordings
|
1571
|
-
* debian/conf/mime.types:
|
1572
|
-
+ Added entry to support 7zip files (Closes: #580423)
|
1573
|
-
* debian/init.d:
|
1574
|
-
+ Do not print config testing info until an error found, Thanks to Ubuntu
|
1575
|
-
bug 568293
|
1576
|
-
* debian/copyright:
|
1577
|
-
+ Updated as per DEP-5 specification
|
1578
|
-
|
1579
|
-
-- Kartik Mistry <kartik@debian.org> Sat, 22 May 2010 01:41:33 +0530
|
1580
|
-
|
1581
|
-
nginx (0.7.65-5) unstable; urgency=low
|
1582
|
-
|
1583
|
-
[Kartik Mistry]
|
1584
|
-
* debian/patches/fix_reloading_ipv6.diff:
|
1585
|
-
+ Added patch to fix reloading with IPv6 addresses, Thanks to
|
1586
|
-
Matthias-Christian Ott <ott@mirix.org> for patch (Closes: #577456)
|
1587
|
-
|
1588
|
-
-- Kartik Mistry <kartik@debian.org> Wed, 14 Apr 2010 11:36:48 +0530
|
1589
|
-
|
1590
|
-
nginx (0.7.65-4) unstable; urgency=low
|
1591
|
-
|
1592
|
-
[Kartik Mistry]
|
1593
|
-
* debian/conf/sites-available/default:
|
1594
|
-
+ Really listen for both IPv4 and IPv6 addresses. Thanks to Nikolaus
|
1595
|
-
Schulz <microschulz@web.de> for notice (Closes: #574983)
|
1596
|
-
* debian/control, debian/rules:
|
1597
|
-
+ Added GeoIP support, Thanks to Caetano Carezzato
|
1598
|
-
<caetano@vision.ime.usp.br> (Closes: #575280)
|
1599
|
-
* debian/conf/mime.types:
|
1600
|
-
+ Added svg entry to mime.types, Jeremy Lal <kapouer@melix.org>
|
1601
|
-
(Closes: #575155)
|
1602
|
-
|
1603
|
-
-- Kartik Mistry <kartik@debian.org> Thu, 25 Mar 2010 00:21:50 +0530
|
1604
|
-
|
1605
|
-
nginx (0.7.65-3) unstable; urgency=medium
|
1606
|
-
|
1607
|
-
[Kartik Mistry]
|
1608
|
-
* Urgency set to medium due to Release Goal
|
1609
|
-
* debian/conf/sites-available/default:
|
1610
|
-
+ Listen for both IPv4 and IPv6 addresses by default (Closes: #574983)
|
1611
|
-
|
1612
|
-
-- Kartik Mistry <kartik@debian.org> Tue, 23 Mar 2010 10:30:18 +0530
|
1613
|
-
|
1614
|
-
nginx (0.7.65-2) unstable; urgency=low
|
1615
|
-
|
1616
|
-
* debian/README.Debian:
|
1617
|
-
+ Added explanation about not installing files in /var/www/
|
1618
|
-
(Closes: #572513)
|
1619
|
-
* debian/rules:
|
1620
|
-
+ Readded realip module support (Closes: #507419)
|
1621
|
-
|
1622
|
-
-- Kartik Mistry <kartik@debian.org> Sat, 06 Mar 2010 13:14:48 +0530
|
1623
|
-
|
1624
|
-
nginx (0.7.65-1) unstable; urgency=low
|
1625
|
-
|
1626
|
-
[Kartik Mistry]
|
1627
|
-
* New upstream release
|
1628
|
-
* debian/init.d:
|
1629
|
-
+ $local_fs $remote_fs $network $syslog is what we need in Required-Start
|
1630
|
-
and Required-Stop (Closes: #568238)
|
1631
|
-
* debian/copyright:
|
1632
|
-
+ Updated package copyright year
|
1633
|
-
+ Updated license text to make same as upstream license
|
1634
|
-
|
1635
|
-
-- Kartik Mistry <kartik@debian.org> Fri, 05 Feb 2010 11:20:28 +0530
|
1636
|
-
|
1637
|
-
nginx (0.7.64-3) unstable; urgency=low
|
1638
|
-
|
1639
|
-
[Kartik Mistry]
|
1640
|
-
* debian/conf/sites-available/default:
|
1641
|
-
+ Added patch to fix default virtual host, Thanks to Thomas Venieris
|
1642
|
-
<mot@freemail.gr> (Closes: #564726)
|
1643
|
-
* debian/init.d:
|
1644
|
-
+ Added dependency on $remote_fs in Required-Start and Required-Stop
|
1645
|
-
(Closes: #566862)
|
1646
|
-
* Converted package to use 3.0 (quilt) source format
|
1647
|
-
* Updated to Standards-Version 3.8.4
|
1648
|
-
|
1649
|
-
-- Kartik Mistry <kartik@debian.org> Mon, 01 Feb 2010 23:44:21 +0530
|
1650
|
-
|
1651
|
-
nginx (0.7.64-2) unstable; urgency=low
|
1652
|
-
|
1653
|
-
[Kartik Mistry]
|
1654
|
-
* debian/rules:
|
1655
|
-
+ Used dh_prep instead of dh_clean -k
|
1656
|
-
* debian/control:
|
1657
|
-
+ Added ${misc:Depends} in Depends
|
1658
|
-
* Added patch for adding debug package, Thanks to Matthew Palmer
|
1659
|
-
<mpalmer@debian.org> (Closes: #563339)
|
1660
|
-
* debian/copyright:
|
1661
|
-
+ Added missing copyright owners for Debian package and fixed year and
|
1662
|
-
licence doesn't point to versionless symlink
|
1663
|
-
|
1664
|
-
[Fabio Tranchitella]
|
1665
|
-
* debian/init.d:
|
1666
|
-
+ Added patch from Wouter de Bie to add $DAEMON_OPTS in
|
1667
|
-
test_nginx_config()
|
1668
|
-
|
1669
|
-
-- Kartik Mistry <kartik@debian.org> Sat, 09 Jan 2010 11:15:59 +0530
|
1670
|
-
|
1671
|
-
nginx (0.7.64-1) unstable; urgency=medium
|
1672
|
-
|
1673
|
-
[Kartik Mistry]
|
1674
|
-
* Urgency set to medium due to security issue
|
1675
|
-
* New upstream release (Closes: #557602)
|
1676
|
-
+ fixes SSL renegotiation vuln CVE-2009-3555 (Closes: #557873)
|
1677
|
-
* debian/nginx.1:
|
1678
|
-
+ Corrected homepage entry (Closes: #556617)
|
1679
|
-
+ Minor whitespace and empty line cleanups, added SEE ALSO section. Used
|
1680
|
-
.TP instead of .br, Added missing options, and this should
|
1681
|
-
(Closes: #556616)
|
1682
|
-
* debian/copyright:
|
1683
|
-
+ Used © instead of deprecated (C) symbol
|
1684
|
-
+ Formatted some texts
|
1685
|
-
* debian/control:
|
1686
|
-
+ Added myself as uploader
|
1687
|
-
+ Wrapped and rearranged Build-Depends for better readability
|
1688
|
-
* debian/patches/dlopen.dpatch:
|
1689
|
-
+ Fixed patch name in comment
|
1690
|
-
+ Added missing DP comment from changelog
|
1691
|
-
* debian/rules:
|
1692
|
-
+ Minor fixes related to formatting of file and whitespaces
|
1693
|
-
* debian/watch:
|
1694
|
-
+ Removed comments out of it
|
1695
|
-
|
1696
|
-
-- Kartik Mistry <kartik@debian.org> Fri, 27 Nov 2009 11:10:18 +0530
|
1697
|
-
|
1698
|
-
nginx (0.7.63-1) unstable; urgency=low
|
1699
|
-
|
1700
|
-
* New upstream release.
|
1701
|
-
|
1702
|
-
-- Fabio Tranchitella <kobold@debian.org> Sun, 08 Nov 2009 09:53:46 +0100
|
1703
|
-
|
1704
|
-
nginx (0.7.62-4) unstable; urgency=low
|
1705
|
-
|
1706
|
-
* debian/conf/nginx.conf: commented out the mail proxy example.
|
1707
|
-
(Closes: #551682)
|
1708
|
-
* debian/init.d: do not redirect the output of nginx -t.
|
1709
|
-
(Closes: #551683)
|
1710
|
-
|
1711
|
-
-- Fabio Tranchitella <kobold@debian.org> Thu, 22 Oct 2009 19:50:05 +0200
|
1712
|
-
|
1713
|
-
nginx (0.7.62-3) unstable; urgency=low
|
1714
|
-
|
1715
|
-
* debian/rules: fix the FTBFS on sparc.
|
1716
|
-
|
1717
|
-
-- Fabio Tranchitella <kobold@debian.org> Fri, 16 Oct 2009 06:39:22 +0000
|
1718
|
-
|
1719
|
-
nginx (0.7.62-2) unstable; urgency=low
|
1720
|
-
|
1721
|
-
* debian/rules: added --with-mail and --with-mail_ssl_module.
|
1722
|
-
* debian/patches/nginx-upstream-fair.dpatch: added support for the
|
1723
|
-
nginx-upstream-fair module. (Closes: #521447)
|
1724
|
-
* debian/patches/dlopen.dpatch: applied patch to remove the unnecesssary link
|
1725
|
-
to libdl. (Closes: #540599)
|
1726
|
-
|
1727
|
-
-- Fabio Tranchitella <kobold@debian.org> Thu, 15 Oct 2009 18:32:00 +0000
|
1728
|
-
|
1729
|
-
nginx (0.7.62-1) unstable; urgency=low
|
1730
|
-
|
1731
|
-
* New upstream release.
|
1732
|
-
* debian/rules: added --with-ipv6. (Closes: #547249)
|
1733
|
-
|
1734
|
-
-- Fabio Tranchitella <kobold@debian.org> Sun, 27 Sep 2009 22:25:16 +0200
|
1735
|
-
|
1736
|
-
nginx (0.7.61-2) unstable; urgency=low
|
1737
|
-
|
1738
|
-
* debian/control: bumped Standards-Version to 3.8.3, no changes needed.
|
1739
|
-
* debian/init.d: added status action. (Closes: #541228)
|
1740
|
-
* debian/rules:
|
1741
|
-
- added -with-http_gzip_static_module. (Closes: #541229)
|
1742
|
-
- use the switch --with-cc-opt="-m32 -mcpu=ultrasparc" on sparc.
|
1743
|
-
(Closes: #543571)
|
1744
|
-
|
1745
|
-
-- Fabio Tranchitella <kobold@debian.org> Sat, 29 Aug 2009 17:03:44 +0200
|
1746
|
-
|
1747
|
-
nginx (0.7.61-1) unstable; urgency=low
|
1748
|
-
|
1749
|
-
* New upstream version:
|
1750
|
-
*) Bugfix: nginx could not be built --without-http-cache; the bug had
|
1751
|
-
appeared in 0.7.60.
|
1752
|
-
*) Bugfix: a segmentation fault occurred in worker process, if a
|
1753
|
-
backend 401 error was intercepted and the backend did not set the
|
1754
|
-
"WWW-Authenticate" response header line.
|
1755
|
-
Thanks to Eugene Mychlo.
|
1756
|
-
*) Feature: the "keepalive_requests" directive.
|
1757
|
-
*) Bugfix: in open_file_cache and proxy/fastcgi cache interaction on
|
1758
|
-
start up.
|
1759
|
-
*) Bugfix: open_file_cache might cache open file descriptors too long.
|
1760
|
-
*) Bugfix: XLST filter did not work in subrequests.
|
1761
|
-
* Fix "gzip_disable in default conf for old IE", adding ignore rules for
|
1762
|
-
certain MSIE versions in the default configuration (Closes: #540025)
|
1763
|
-
* Fix "init.d: Config test before allowing a restart" adding a function
|
1764
|
-
and calling it before reloading, restarting and starting (Closes: #539778)
|
1765
|
-
* Drops path for pidof call in postinst script.
|
1766
|
-
|
1767
|
-
-- Jose Parrella <bureado@debian.org> Wed, 05 Aug 2009 14:00:11 -0500
|
1768
|
-
|
1769
|
-
nginx (0.7.59-1) unstable; urgency=low
|
1770
|
-
|
1771
|
-
* New upstream release, first in Debian for the 0.7 branch. Among other
|
1772
|
-
issues, it also fixes the problem with wildcard dns names used with SSL.
|
1773
|
-
(Closes: #515904)
|
1774
|
-
* debian/watch: updated.
|
1775
|
-
* debian/postinst: fixed a bashism. (Closes: #507913)
|
1776
|
-
* debian/conf/nginx.conf: removed default_type. (Closes: #509390)
|
1777
|
-
* debian/control: updated Standards-Version to 3.8.1, no changes needed.
|
1778
|
-
* debian/NEWS.Debian: documented the issues with
|
1779
|
-
server_names_hash_bucket_size. (Closes: #524785)
|
1780
|
-
|
1781
|
-
-- Fabio Tranchitella <kobold@debian.org> Sun, 31 May 2009 18:38:56 +0200
|
1782
|
-
|
1783
|
-
nginx (0.7.14-1) experimental; urgency=low
|
1784
|
-
|
1785
|
-
* New upstream release.
|
1786
|
-
* Adding configtest to the init.d script (Closes: #496279)
|
1787
|
-
* postinst now calls the builtin kill, so tweaks on the specific signal
|
1788
|
-
calls were needed.
|
1789
|
-
* Default HTML files are no longer installed.
|
1790
|
-
* The default configuration file no longer requires a 50x file under
|
1791
|
-
/var/www.
|
1792
|
-
|
1793
|
-
-- Jose Parrella <bureado@debian.org> Tue, 02 Sep 2008 20:48:58 -0430
|
1794
|
-
|
1795
|
-
nginx (0.6.34-2) unstable; urgency=low
|
1796
|
-
|
1797
|
-
* Added support for realip module. (Closes: #507419)
|
1798
|
-
|
1799
|
-
-- Fabio Tranchitella <kobold@debian.org> Sat, 06 Dec 2008 10:34:01 +0100
|
1800
|
-
|
1801
|
-
nginx (0.6.34-1) unstable; urgency=low
|
1802
|
-
|
1803
|
-
* New upstream release.
|
1804
|
-
* debian/rules: removed the --with-debug configure switch. (Closes: #500891)
|
1805
|
-
|
1806
|
-
-- Fabio Tranchitella <kobold@debian.org> Sun, 30 Nov 2008 11:37:13 +0100
|
1807
|
-
|
1808
|
-
nginx (0.6.32-3) unstable; urgency=low
|
1809
|
-
|
1810
|
-
* debian/control: build again on all the architectures, but use the switch
|
1811
|
-
--with-cc-opt="-m32 -mcpu=ultrasparc" on sparch. (Closes: #479185)
|
1812
|
-
|
1813
|
-
-- Fabio Tranchitella <kobold@debian.org> Thu, 25 Sep 2008 17:14:27 +0200
|
1814
|
-
|
1815
|
-
nginx (0.6.32-2) unstable; urgency=low
|
1816
|
-
|
1817
|
-
* debian/control: disabled support for sparc. (Closes: #479185)
|
1818
|
-
|
1819
|
-
-- Fabio Tranchitella <kobold@debian.org> Sat, 20 Sep 2008 11:48:48 +0200
|
1820
|
-
|
1821
|
-
nginx (0.6.32-1) unstable; urgency=low
|
1822
|
-
|
1823
|
-
* New upstream release.
|
1824
|
-
|
1825
|
-
-- Fabio Tranchitella <kobold@debian.org> Fri, 18 Jul 2008 09:15:58 +0200
|
1826
|
-
|
1827
|
-
nginx (0.6.31-2) unstable; urgency=low
|
1828
|
-
|
1829
|
-
* debian/control: removed httpd-cgi, nginx doesn't support executing
|
1830
|
-
external programs. (Closes: #482332)
|
1831
|
-
|
1832
|
-
-- Fabio Tranchitella <kobold@debian.org> Thu, 22 May 2008 08:18:52 +0200
|
1833
|
-
|
1834
|
-
nginx (0.6.31-1) unstable; urgency=low
|
1835
|
-
|
1836
|
-
* New upstream release.
|
1837
|
-
|
1838
|
-
-- Fabio Tranchitella <kobold@debian.org> Mon, 12 May 2008 22:34:55 +0200
|
1839
|
-
|
1840
|
-
nginx (0.6.30-2) unstable; urgency=low
|
1841
|
-
|
1842
|
-
* Upload into unstable.
|
1843
|
-
|
1844
|
-
-- Fabio Tranchitella <kobold@debian.org> Mon, 12 May 2008 14:24:53 +0200
|
1845
|
-
|
1846
|
-
nginx (0.6.30-1) experimental; urgency=low
|
1847
|
-
|
1848
|
-
* New upstream release.
|
1849
|
-
* Sync with the unstable packages.
|
1850
|
-
* debian/conf/nginx.conf: add support for a conf.d directory.
|
1851
|
-
(Closes: #476952)
|
1852
|
-
|
1853
|
-
-- Fabio Tranchitella <kobold@debian.org> Fri, 02 May 2008 09:32:46 +0200
|
1854
|
-
|
1855
|
-
nginx (0.5.35-3) unstable; urgency=low
|
1856
|
-
|
1857
|
-
* debian/conf/sites-available/default: adding support for /doc and /images
|
1858
|
-
namespaces (Closes: #474519)
|
1859
|
-
|
1860
|
-
-- Jose Parrella <bureado@debian.org> Mon, 07 Apr 2008 13:22:32 -0430
|
1861
|
-
|
1862
|
-
nginx (0.5.35-2) unstable; urgency=low
|
1863
|
-
|
1864
|
-
* debian/init.d: do not break if start-stop-daemon exits with an error.
|
1865
|
-
(Closes: #464453)
|
1866
|
-
|
1867
|
-
-- Fabio Tranchitella <kobold@debian.org> Sun, 10 Feb 2008 17:57:57 +0100
|
1868
|
-
|
1869
|
-
nginx (0.5.35-1) unstable; urgency=low
|
1870
|
-
|
1871
|
-
* New upstream release.
|
1872
|
-
|
1873
|
-
-- Fabio Tranchitella <kobold@debian.org> Wed, 09 Jan 2008 07:58:56 +0100
|
1874
|
-
|
1875
|
-
nginx (0.5.34-1) unstable; urgency=low
|
1876
|
-
|
1877
|
-
* New upstream release.
|
1878
|
-
* debian/control: added Homepage, Vcs-Svn, Vcs-Browser fields; updated
|
1879
|
-
Standard-Versions to 3.7.3.
|
1880
|
-
|
1881
|
-
-- Fabio Tranchitella <kobold@debian.org> Mon, 24 Dec 2007 12:26:27 +0100
|
1882
|
-
|
1883
|
-
nginx (0.5.33-1) unstable; urgency=low
|
1884
|
-
|
1885
|
-
* New stable upstream release (Closes: #451173)
|
1886
|
-
* nginx now provides httpd, httpd-cgi virtual packages
|
1887
|
-
(Closes: #439468, #452025)
|
1888
|
-
* sites-enabled/default link is now provided only on fresh
|
1889
|
-
installations (Closes: #432961)
|
1890
|
-
* Updated code for online upgrading of nginx (Closes: #445246)
|
1891
|
-
* Reviewed maintainer scripts for correct behaviour on updates
|
1892
|
-
(Closes: #452787, #435965)
|
1893
|
-
* Removed debian/nginx.links and debian/preinst.
|
1894
|
-
* Changing Maintainer address to bureado@debian.org.
|
1895
|
-
* Welcoming Fabio Tranchitella <kobold@debian.org> as an nginx
|
1896
|
-
uploader for Debian. Thanks for your patches.
|
1897
|
-
|
1898
|
-
-- Jose Parrella <bureado@debian.org> Sat, 08 Dec 2007 11:27:54 -0400
|
1899
|
-
|
1900
|
-
nginx (0.5.30-1) unstable; urgency=low
|
1901
|
-
|
1902
|
-
* New stable upstream release.
|
1903
|
-
* Adding mime.types (and other upstream conffiles) to the package
|
1904
|
-
since it was lost on 0.5.26 (Closes: #435964)
|
1905
|
-
|
1906
|
-
-- Jose Parrella <joseparrella@cantv.net> Sat, 04 Aug 2007 10:39:40 -0400
|
1907
|
-
|
1908
|
-
nginx (0.5.26-1) unstable; urgency=low
|
1909
|
-
|
1910
|
-
* New stable upstream release.
|
1911
|
-
* Updating init.d usage message.
|
1912
|
-
* Installing logrotate script (Closes: #397978)
|
1913
|
-
|
1914
|
-
-- Jose Parrella <joseparrella@cantv.net> Sun, 17 Jun 2007 20:43:35 +0100
|
1915
|
-
|
1916
|
-
nginx (0.5.18-1) unstable; urgency=low
|
1917
|
-
|
1918
|
-
* New upstream version (Closes: #420063)
|
1919
|
-
* Adding DAV support (Closes: #415678)
|
1920
|
-
* Adding support for sites-[available|enabled]/ (Closes: #419912)
|
1921
|
-
|
1922
|
-
-- Jose Parrella <joseparrella@cantv.net> Thu, 19 Apr 2007 21:50:37 -0400
|
1923
|
-
|
1924
|
-
nginx (0.5.13-1) unstable; urgency=low
|
1925
|
-
|
1926
|
-
* Adding FLV support. (Closes: #411105)
|
1927
|
-
* Adding SSL support.
|
1928
|
-
|
1929
|
-
-- Jose Parrella <joseparrella@cantv.net> Mon, 19 Feb 2007 10:30:07 -0400
|
1930
|
-
|
1931
|
-
nginx (0.5.12-2) unstable; urgency=low
|
1932
|
-
|
1933
|
-
* Patching src/core/ngx_shmtx.h in order to solve FTBFS problems in
|
1934
|
-
non-x86 archs (Thanks to Igor Sysoev) (Closes: #410884)
|
1935
|
-
|
1936
|
-
-- Jose Parrella <joseparrella@cantv.net> Wed, 14 Feb 2007 13:32:01 -0400
|
1937
|
-
|
1938
|
-
nginx (0.5.12-1) unstable; urgency=low
|
1939
|
-
|
1940
|
-
* New upstream version fixes FTBFS problems in non-x86 archs
|
1941
|
-
(Closes: #409878)
|
1942
|
-
|
1943
|
-
-- Jose Parrella <joseparrella@cantv.net> Mon, 12 Feb 2007 19:37:07 -0400
|
1944
|
-
|
1945
|
-
nginx (0.5.11-1) unstable; urgency=low
|
1946
|
-
|
1947
|
-
* New upstream version. (Closes: #405983)
|
1948
|
-
|
1949
|
-
-- Jose Parrella <joseparrella@cantv.net> Sun, 5 Feb 2007 19:35:56 -0400
|
1950
|
-
|
1951
|
-
nginx (0.4.13-2) unstable; urgency=low
|
1952
|
-
|
1953
|
-
* Fixed default installation paths for www/ files, avoiding the
|
1954
|
-
default installation of index.html in /var/www (Closes: #400103)
|
1955
|
-
* Alexey Besciokov <proforg@maloletka.ru> provided new postinst and prerm
|
1956
|
-
scripts with the ability to reload the master binary (Closes: #398009)
|
1957
|
-
|
1958
|
-
-- Jose Parrella <joseparrella@cantv.net> Fri, 24 Nov 2006 07:12:46 -0400
|
1959
|
-
|
1960
|
-
nginx (0.4.13-1) unstable; urgency=low
|
1961
|
-
|
1962
|
-
* New upstream version
|
1963
|
-
* Fixed default configuration file which made nginx to fail at
|
1964
|
-
installation and purge.
|
1965
|
-
|
1966
|
-
-- Jose Parrella <joseparrella@cantv.net> Thu, 16 Nov 2006 22:44:33 -0400
|
1967
|
-
|
1968
|
-
nginx (0.4.12-1) unstable; urgency=low
|
1969
|
-
|
1970
|
-
* New upstream version (Closes: #397969)
|
1971
|
-
* nginx will now compile with debugging and status support
|
1972
|
-
(Closes: #397967)
|
1973
|
-
* Added configuration reload support in the init.d script
|
1974
|
-
(Closes: #397980)
|
1975
|
-
* Added logrotate script (Closes: #397978)
|
1976
|
-
* Added debian/upstream.pl as a brief helper for new
|
1977
|
-
upstream version packaging.
|
1978
|
-
* Thanks to Alexey Besciokov <proforg@maloletka.ru> for
|
1979
|
-
suggestions, bug reports and patches.
|
1980
|
-
|
1981
|
-
-- Jose Parrella <joseparrella@cantv.net> Sun, 12 Nov 2006 18:31:24 -0400
|
1982
|
-
|
1983
|
-
nginx (0.4.2-1) unstable; urgency=low
|
1984
|
-
|
1985
|
-
* Initial release (Closes: #386151)
|
1986
|
-
* Tweaked the configuration file and the path handling for Debian.
|
1987
|
-
|
1988
|
-
-- Jose Parrella <joseparrella@cantv.net> Thu, 14 Sep 2006 11:40:20 -0400
|
1989
|
-
|