passenger 4.0.59 → 4.0.60

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.

Files changed (579) hide show
  1. checksums.yaml +8 -8
  2. checksums.yaml.gz.asc +7 -7
  3. data.tar.gz.asc +7 -7
  4. data/CHANGELOG +15 -0
  5. data/bin/passenger-install-apache2-module +2 -1
  6. data/bin/passenger-install-nginx-module +8 -2
  7. data/ext/apache2/Hooks.cpp +21 -2
  8. data/ext/apache2/MergeDirConfig.cpp +40 -40
  9. data/ext/common/ApplicationPool2/Group.h +14 -10
  10. data/ext/common/ApplicationPool2/Implementation.cpp +13 -7
  11. data/ext/common/ApplicationPool2/SmartSpawner.h +4 -1
  12. data/ext/common/Constants.h +1 -1
  13. data/ext/nginx/ContentHandler.c +17 -1
  14. data/lib/phusion_passenger.rb +4 -5
  15. data/lib/phusion_passenger/platform_info/depcheck_specs/libs.rb +4 -3
  16. data/lib/phusion_passenger/platform_info/openssl.rb +61 -0
  17. data/lib/phusion_passenger/standalone/runtime_installer.rb +27 -22
  18. data/packaging/debian/LICENSE.md +19 -0
  19. data/packaging/debian/README.md +320 -0
  20. data/packaging/debian/Vagrantfile +25 -0
  21. data/packaging/debian/build +210 -0
  22. data/packaging/debian/debian_specs/nginx/changelog +1989 -0
  23. data/packaging/debian/debian_specs/nginx/compat.erb +5 -0
  24. data/packaging/debian/debian_specs/nginx/conf/fastcgi.conf +25 -0
  25. data/packaging/debian/debian_specs/nginx/conf/fastcgi_params +24 -0
  26. data/packaging/debian/debian_specs/nginx/conf/koi-utf +109 -0
  27. data/packaging/debian/debian_specs/nginx/conf/koi-win +103 -0
  28. data/packaging/debian/debian_specs/nginx/conf/mime.types +89 -0
  29. data/packaging/debian/debian_specs/nginx/conf/nginx.conf.erb +97 -0
  30. data/packaging/debian/debian_specs/nginx/conf/proxy_params +4 -0
  31. data/packaging/debian/debian_specs/nginx/conf/scgi_params +16 -0
  32. data/packaging/debian/debian_specs/nginx/conf/sites-available/default.erb +93 -0
  33. data/packaging/debian/debian_specs/nginx/conf/snippets/fastcgi-php.conf +13 -0
  34. data/packaging/debian/debian_specs/nginx/conf/snippets/snakeoil.conf +5 -0
  35. data/packaging/debian/debian_specs/nginx/conf/uwsgi_params +16 -0
  36. data/packaging/debian/debian_specs/nginx/conf/win-utf +125 -0
  37. data/packaging/debian/debian_specs/nginx/control.erb +226 -0
  38. data/packaging/debian/debian_specs/nginx/copyright +196 -0
  39. data/packaging/debian/debian_specs/nginx/debian-full.lintian-overrides +1 -0
  40. data/packaging/debian/debian_specs/nginx/gbp.conf +2 -0
  41. data/packaging/debian/debian_specs/nginx/help/docs/fcgiwrap +14 -0
  42. data/packaging/debian/debian_specs/nginx/help/docs/php +119 -0
  43. data/packaging/debian/debian_specs/nginx/help/docs/support-irc +28 -0
  44. data/packaging/debian/debian_specs/nginx/help/docs/upstream +51 -0
  45. data/packaging/debian/debian_specs/nginx/help/examples/drupal +114 -0
  46. data/packaging/debian/debian_specs/nginx/help/examples/http +59 -0
  47. data/packaging/debian/debian_specs/nginx/help/examples/mail +30 -0
  48. data/packaging/debian/debian_specs/nginx/help/examples/mailman +59 -0
  49. data/packaging/debian/debian_specs/nginx/help/examples/nginx.conf +34 -0
  50. data/packaging/debian/debian_specs/nginx/help/examples/nginx_modsite +162 -0
  51. data/packaging/debian/debian_specs/nginx/help/examples/virtual_hosts +155 -0
  52. data/packaging/debian/debian_specs/nginx/help/examples/wordpress +74 -0
  53. data/packaging/debian/debian_specs/nginx/helpers.rb +41 -0
  54. data/packaging/debian/debian_specs/nginx/index-debian.html.in +32 -0
  55. data/packaging/debian/debian_specs/nginx/index-ubuntu.html.in +32 -0
  56. data/packaging/debian/debian_specs/nginx/index.html.erb +10 -0
  57. data/packaging/debian/debian_specs/nginx/modules/README.Modules-versions +65 -0
  58. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/README.markdown +510 -0
  59. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/config +5 -0
  60. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/doc/HttpHeadersMoreModule.wiki +395 -0
  61. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ddebug.h +119 -0
  62. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.c +348 -0
  63. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.h +80 -0
  64. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.c +826 -0
  65. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.h +26 -0
  66. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.c +716 -0
  67. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.h +26 -0
  68. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.c +380 -0
  69. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.h +52 -0
  70. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/util/build.sh +32 -0
  71. data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/valgrind.suppress +215 -0
  72. data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ChangeLog +35 -0
  73. data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/LICENSE +25 -0
  74. data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/README.md +93 -0
  75. data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/config +4 -0
  76. data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ngx_http_auth_pam_module.c +462 -0
  77. data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/CHANGES +66 -0
  78. data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/LICENSE +26 -0
  79. data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/README.md +171 -0
  80. data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/TODO.md +7 -0
  81. data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/config +21 -0
  82. data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/ngx_cache_purge_module.c +1803 -0
  83. data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/README +29 -0
  84. data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/config +9 -0
  85. data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/ngx_http_dav_ext_module.c +824 -0
  86. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README +139 -0
  87. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README_AUTO_LIB +395 -0
  88. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/TODO +1 -0
  89. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/array +10 -0
  90. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/palloc +8 -0
  91. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/build +597 -0
  92. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_replacements +5 -0
  93. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_types +12 -0
  94. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_args +22 -0
  95. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_locs +25 -0
  96. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_macros +35 -0
  97. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/contexts +22 -0
  98. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/header_files +3 -0
  99. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/headers +4 -0
  100. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/module_dependencies +5 -0
  101. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/modules_optional +15 -0
  102. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/prefixes +2 -0
  103. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/array.h +7 -0
  104. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_cmd_basic.h +43 -0
  105. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_merge.h +78 -0
  106. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/palloc.h +6 -0
  107. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/text/autogen +12 -0
  108. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/config +49 -0
  109. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/action_macros +63 -0
  110. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/conf_cmds +62 -0
  111. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/modules/set_var +124 -0
  112. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/patches/more_logging_info +48 -0
  113. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/upstream/list +45 -0
  114. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/README +12 -0
  115. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/config +4 -0
  116. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/ngx_http_set_var_examples_module.c +136 -0
  117. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/ngx_auto_lib_core +797 -0
  118. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/CHANGES +17 -0
  119. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/LICENSE +24 -0
  120. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_array.h +113 -0
  121. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_basic.h +2203 -0
  122. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_extra.h +5423 -0
  123. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_merge.h +227 -0
  124. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.c +72 -0
  125. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.h +98 -0
  126. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_includes.h +66 -0
  127. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_palloc.h +112 -0
  128. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/auto_config +16 -0
  129. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/expose_rewrite_functions +291 -0
  130. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/rewrite_phase_handler +19 -0
  131. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/md5.h +117 -0
  132. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/murmurhash2.c +77 -0
  133. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/sha.h +200 -0
  134. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.c +155 -0
  135. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.h +58 -0
  136. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.c +43 -0
  137. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.h +5 -0
  138. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.c +129 -0
  139. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.h +30 -0
  140. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.c +192 -0
  141. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.h +21 -0
  142. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.c +396 -0
  143. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.h +44 -0
  144. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.c +72 -0
  145. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.h +171 -0
  146. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.c +57 -0
  147. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.h +12 -0
  148. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.c +82 -0
  149. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.h +45 -0
  150. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.c +138 -0
  151. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.h +3 -0
  152. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http_headers.h +35 -0
  153. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.c +3 -0
  154. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.h +165 -0
  155. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_parse.h +67 -0
  156. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.c +583 -0
  157. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.h +22 -0
  158. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.c +20 -0
  159. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.h +12 -0
  160. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.c +215 -0
  161. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.h +7 -0
  162. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.c +103 -0
  163. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.h +26 -0
  164. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.c +602 -0
  165. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.h +44 -0
  166. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.c +434 -0
  167. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.h +37 -0
  168. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string_util.h +14 -0
  169. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.c +205 -0
  170. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.h +27 -0
  171. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.c +45 -0
  172. data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.h +6 -0
  173. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/LICENSE +25 -0
  174. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/README.markdown +1850 -0
  175. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/config +5 -0
  176. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/doc/HttpEchoModule.wiki +1558 -0
  177. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ddebug.h +109 -0
  178. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.c +344 -0
  179. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.h +25 -0
  180. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.c +282 -0
  181. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.h +15 -0
  182. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.c +183 -0
  183. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.h +16 -0
  184. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.c +429 -0
  185. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.h +18 -0
  186. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.c +178 -0
  187. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.h +13 -0
  188. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.c +667 -0
  189. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.h +137 -0
  190. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.c +452 -0
  191. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.h +31 -0
  192. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.c +208 -0
  193. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.h +16 -0
  194. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.c +788 -0
  195. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.h +19 -0
  196. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.c +96 -0
  197. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.h +13 -0
  198. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.c +298 -0
  199. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.h +58 -0
  200. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.c +110 -0
  201. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.h +9 -0
  202. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/build.sh +45 -0
  203. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/releng +8 -0
  204. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/wiki2pod.pl +131 -0
  205. data/packaging/debian/debian_specs/nginx/modules/nginx-echo/valgrind.suppress +38 -0
  206. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/LICENCE +24 -0
  207. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/README +206 -0
  208. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/changelog.txt +54 -0
  209. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/config +26 -0
  210. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/protocol.txt +191 -0
  211. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.c +59 -0
  212. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.h +73 -0
  213. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.c +783 -0
  214. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.h +31 -0
  215. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module_setup.c +361 -0
  216. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_types.h +120 -0
  217. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.c +1180 -0
  218. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.h +1 -0
  219. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.c +146 -0
  220. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.h +5 -0
  221. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_store.h +51 -0
  222. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.c +178 -0
  223. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.h +5 -0
  224. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.c +246 -0
  225. data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.h +9 -0
  226. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/Changes +51 -0
  227. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/README.markdown +6954 -0
  228. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/config +363 -0
  229. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/doc/HttpLuaModule.wiki +5898 -0
  230. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/dtrace/ngx_lua_provider.d +61 -0
  231. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/Makefile +3 -0
  232. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/lib/RecvUntil.pm +138 -0
  233. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/t/sanity.t +140 -0
  234. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/api/ngx_http_lua_api.h +52 -0
  235. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ddebug.h +82 -0
  236. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.c +377 -0
  237. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.h +22 -0
  238. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_api.c +77 -0
  239. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.c +537 -0
  240. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.h +20 -0
  241. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.c +632 -0
  242. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.h +31 -0
  243. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.c +296 -0
  244. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.h +24 -0
  245. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.c +175 -0
  246. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.h +20 -0
  247. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.c +887 -0
  248. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.h +22 -0
  249. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_common.h +478 -0
  250. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.c +67 -0
  251. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.h +19 -0
  252. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.c +148 -0
  253. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.h +20 -0
  254. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.c +369 -0
  255. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.h +26 -0
  256. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.c +483 -0
  257. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.h +20 -0
  258. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.c +379 -0
  259. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.h +23 -0
  260. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.c +216 -0
  261. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.h +23 -0
  262. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.c +1081 -0
  263. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.h +56 -0
  264. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.c +58 -0
  265. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.h +33 -0
  266. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.c +302 -0
  267. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.h +29 -0
  268. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.c +1370 -0
  269. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.h +22 -0
  270. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.c +782 -0
  271. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.h +22 -0
  272. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.c +625 -0
  273. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.h +23 -0
  274. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.c +42 -0
  275. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.h +23 -0
  276. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.c +320 -0
  277. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.h +25 -0
  278. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.c +300 -0
  279. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.h +20 -0
  280. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.c +227 -0
  281. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.h +22 -0
  282. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.c +252 -0
  283. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.h +20 -0
  284. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_module.c +924 -0
  285. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.c +184 -0
  286. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.h +21 -0
  287. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.c +794 -0
  288. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.h +28 -0
  289. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.c +106 -0
  290. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.h +23 -0
  291. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.c +94 -0
  292. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.h +13 -0
  293. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_probe.h +85 -0
  294. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.c +2468 -0
  295. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.h +22 -0
  296. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.c +1169 -0
  297. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.h +20 -0
  298. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.c +252 -0
  299. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.h +19 -0
  300. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.c +351 -0
  301. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.h +22 -0
  302. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.c +538 -0
  303. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.h +86 -0
  304. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.c +216 -0
  305. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.h +15 -0
  306. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.c +1844 -0
  307. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.h +52 -0
  308. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.c +191 -0
  309. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.h +20 -0
  310. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.c +5314 -0
  311. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.h +156 -0
  312. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.c +1624 -0
  313. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.h +56 -0
  314. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.c +704 -0
  315. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.h +20 -0
  316. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.c +1741 -0
  317. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.h +46 -0
  318. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.c +278 -0
  319. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.h +21 -0
  320. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.c +661 -0
  321. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.h +20 -0
  322. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.c +110 -0
  323. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.h +20 -0
  324. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.c +283 -0
  325. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.h +36 -0
  326. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.c +3972 -0
  327. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.h +423 -0
  328. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.c +499 -0
  329. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.h +20 -0
  330. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.c +64 -0
  331. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.h +17 -0
  332. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/tapset/ngx_lua.stp +5 -0
  333. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build.sh +39 -0
  334. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build2.sh +55 -0
  335. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/fix-comments +27 -0
  336. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/gdbinit +415 -0
  337. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/ngx-links +62 -0
  338. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/reindex +64 -0
  339. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/releng +8 -0
  340. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/retab +8 -0
  341. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/revim +102 -0
  342. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/run_test.sh +10 -0
  343. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/update-readme.sh +4 -0
  344. data/packaging/debian/debian_specs/nginx/modules/nginx-lua/valgrind.suppress +144 -0
  345. data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/CHANGES +107 -0
  346. data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/LICENSE +25 -0
  347. data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/Makefile +8 -0
  348. data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/README +329 -0
  349. data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/config +3 -0
  350. data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/ngx_http_uploadprogress_module.c +1774 -0
  351. data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/README +53 -0
  352. data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/config +3 -0
  353. data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/ngx_http_upstream_fair_module.c +1356 -0
  354. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/CHANGELOG.md +37 -0
  355. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/HACKING.md +24 -0
  356. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/LICENSE +20 -0
  357. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/README.rst +182 -0
  358. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/config +8 -0
  359. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/nginx-0.6-support.patch +23 -0
  360. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/ngx_http_fancyindex_module.c +1305 -0
  361. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.awk +52 -0
  362. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.h +103 -0
  363. data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.html +102 -0
  364. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/CHANGES +37 -0
  365. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/README +141 -0
  366. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/config +3 -0
  367. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.google_code_home_page.wiki +120 -0
  368. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.html +199 -0
  369. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.wiki +123 -0
  370. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/ngx_http_subs_filter_module.c +1298 -0
  371. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/README +275 -0
  372. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/AutoInstall.pm +820 -0
  373. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install.pm +470 -0
  374. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/AutoInstall.pm +82 -0
  375. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Base.pm +83 -0
  376. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Can.pm +81 -0
  377. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Fetch.pm +93 -0
  378. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Include.pm +34 -0
  379. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Makefile.pm +415 -0
  380. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Metadata.pm +716 -0
  381. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/TestBase.pm +29 -0
  382. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Win32.pm +64 -0
  383. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/WriteAll.pm +63 -0
  384. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Spiffy.pm +539 -0
  385. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base.pm +682 -0
  386. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base/Filter.pm +341 -0
  387. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder.pm +1413 -0
  388. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder/Module.pm +81 -0
  389. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/More.pm +735 -0
  390. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx.pm +315 -0
  391. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/LWP.pm +524 -0
  392. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Socket.pm +1749 -0
  393. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Util.pm +874 -0
  394. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs.t +136 -0
  395. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_capture.t +32 -0
  396. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_fix_string.t +32 -0
  397. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_regex.t +108 -0
  398. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_types.t +59 -0
  399. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/test.sh +5 -0
  400. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/update-readme.sh +7 -0
  401. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2google_code_homepage.pl +29 -0
  402. data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2pod.pl +129 -0
  403. data/packaging/debian/debian_specs/nginx/nginx-common.NEWS +135 -0
  404. data/packaging/debian/debian_specs/nginx/nginx-common.README.Debian +45 -0
  405. data/packaging/debian/debian_specs/nginx/nginx-common.dirs.erb +32 -0
  406. data/packaging/debian/debian_specs/nginx/nginx-common.install +3 -0
  407. data/packaging/debian/debian_specs/nginx/nginx-common.lintian-overrides +2 -0
  408. data/packaging/debian/debian_specs/nginx/nginx-common.manpages +1 -0
  409. data/packaging/debian/debian_specs/nginx/nginx-common.nginx.default +10 -0
  410. data/packaging/debian/debian_specs/nginx/nginx-common.nginx.init.erb +214 -0
  411. data/packaging/debian/debian_specs/nginx/nginx-common.nginx.logrotate +18 -0
  412. data/packaging/debian/debian_specs/nginx/nginx-common.nginx.service.erb +37 -0
  413. data/packaging/debian/debian_specs/nginx/nginx-common.postinst.erb +66 -0
  414. data/packaging/debian/debian_specs/nginx/nginx-common.postrm.erb +46 -0
  415. data/packaging/debian/debian_specs/nginx/nginx-common.preinst +47 -0
  416. data/packaging/debian/debian_specs/nginx/nginx-common.prerm.erb +28 -0
  417. data/packaging/debian/debian_specs/nginx/nginx-doc.docs +2 -0
  418. data/packaging/debian/debian_specs/nginx/nginx-doc.examples +1 -0
  419. data/packaging/debian/debian_specs/nginx/nginx-extras.install.erb +17 -0
  420. data/packaging/debian/debian_specs/nginx/nginx-extras.lintian-overrides +1 -0
  421. data/packaging/debian/debian_specs/nginx/nginx-extras.postinst.erb +44 -0
  422. data/packaging/debian/debian_specs/nginx/nginx-extras.prerm +22 -0
  423. data/packaging/debian/debian_specs/nginx/nginx.1 +47 -0
  424. data/packaging/debian/debian_specs/nginx/patches/perl-use-dpkg-buildflags.patch +23 -0
  425. data/packaging/debian/debian_specs/nginx/patches/series +1 -0
  426. data/packaging/debian/debian_specs/nginx/rules.erb +185 -0
  427. data/packaging/debian/debian_specs/nginx/source/format +1 -0
  428. data/packaging/debian/debian_specs/nginx/tests/control +4 -0
  429. data/packaging/debian/debian_specs/nginx/ufw/nginx +14 -0
  430. data/packaging/debian/debian_specs/nginx/upstream/signing-key.asc +34 -0
  431. data/packaging/debian/debian_specs/nginx/watch +3 -0
  432. data/packaging/debian/debian_specs/passenger/README.Debian +12 -0
  433. data/packaging/debian/debian_specs/passenger/changelog +316 -0
  434. data/packaging/debian/debian_specs/passenger/compat +1 -0
  435. data/packaging/debian/debian_specs/passenger/control.erb +123 -0
  436. data/packaging/debian/debian_specs/passenger/copyright +385 -0
  437. data/packaging/debian/debian_specs/passenger/helpers.rb +24 -0
  438. data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.install +3 -0
  439. data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.postinst +36 -0
  440. data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.prerm +15 -0
  441. data/packaging/debian/debian_specs/passenger/locations.ini.erb +14 -0
  442. data/packaging/debian/debian_specs/passenger/passenger-dev.install.erb +3 -0
  443. data/packaging/debian/debian_specs/passenger/passenger-doc.install.erb +2 -0
  444. data/packaging/debian/debian_specs/passenger/passenger.conf +6 -0
  445. data/packaging/debian/debian_specs/passenger/passenger.docs +4 -0
  446. data/packaging/debian/debian_specs/passenger/passenger.install.erb +16 -0
  447. data/packaging/debian/debian_specs/passenger/passenger.load +3 -0
  448. data/packaging/debian/debian_specs/passenger/passenger.manpages +3 -0
  449. data/packaging/debian/debian_specs/passenger/passenger_free_ruby.c +29 -0
  450. data/packaging/debian/debian_specs/passenger/passenger_ruby_utils.c +54 -0
  451. data/packaging/debian/debian_specs/passenger/passenger_system_ruby.c.erb +37 -0
  452. data/packaging/debian/debian_specs/passenger/patches/series +0 -0
  453. data/packaging/debian/debian_specs/passenger/rules.erb +84 -0
  454. data/packaging/debian/debian_specs/passenger/source/format +1 -0
  455. data/packaging/debian/debian_specs/passenger_enterprise/README.Debian +12 -0
  456. data/packaging/debian/debian_specs/passenger_enterprise/changelog +316 -0
  457. data/packaging/debian/debian_specs/passenger_enterprise/compat +1 -0
  458. data/packaging/debian/debian_specs/passenger_enterprise/control.erb +123 -0
  459. data/packaging/debian/debian_specs/passenger_enterprise/copyright +385 -0
  460. data/packaging/debian/debian_specs/passenger_enterprise/helpers.rb +2 -0
  461. data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.install +3 -0
  462. data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.postinst +36 -0
  463. data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.prerm +15 -0
  464. data/packaging/debian/debian_specs/passenger_enterprise/locations.ini.erb +14 -0
  465. data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-dev.install.erb +3 -0
  466. data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-doc.install.erb +2 -0
  467. data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.docs +4 -0
  468. data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.install.erb +14 -0
  469. data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.manpages +3 -0
  470. data/packaging/debian/debian_specs/passenger_enterprise/passenger.conf +6 -0
  471. data/packaging/debian/debian_specs/passenger_enterprise/passenger.load +3 -0
  472. data/packaging/debian/debian_specs/passenger_enterprise/passenger_free_ruby.c.erb +1 -0
  473. data/packaging/debian/debian_specs/passenger_enterprise/passenger_ruby_utils.c.erb +1 -0
  474. data/packaging/debian/debian_specs/passenger_enterprise/passenger_system_ruby.c.erb +1 -0
  475. data/packaging/debian/debian_specs/passenger_enterprise/patches/series +0 -0
  476. data/packaging/debian/debian_specs/passenger_enterprise/rules.erb +84 -0
  477. data/packaging/debian/debian_specs/passenger_enterprise/source/format +1 -0
  478. data/packaging/debian/docker_images/Makefile +38 -0
  479. data/packaging/debian/docker_images/buildbox/CONTAINER_VERSION.txt +0 -0
  480. data/packaging/debian/docker_images/buildbox/Dockerfile +3 -0
  481. data/packaging/debian/docker_images/buildbox/Gemfile +9 -0
  482. data/packaging/debian/docker_images/buildbox/Gemfile.lock +42 -0
  483. data/packaging/debian/docker_images/buildbox/install.sh +85 -0
  484. data/packaging/debian/docker_images/buildbox/pbuilderrc +4 -0
  485. data/packaging/debian/docker_images/buildbox/sudoers.conf +6 -0
  486. data/packaging/debian/docker_images/setup-buildbox-docker-image +7 -0
  487. data/packaging/debian/docker_images/setup-testbox-docker-image-debian-6 +7 -0
  488. data/packaging/debian/docker_images/setup-testbox-docker-image-debian-7 +7 -0
  489. data/packaging/debian/docker_images/setup-testbox-docker-image-debian-8 +7 -0
  490. data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-12.04 +7 -0
  491. data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-14.04 +7 -0
  492. data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.04 +7 -0
  493. data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.10 +7 -0
  494. data/packaging/debian/docker_images/testbox-debian-6/Dockerfile +3 -0
  495. data/packaging/debian/docker_images/testbox-debian-6/Gemfile +2 -0
  496. data/packaging/debian/docker_images/testbox-debian-6/Gemfile.lock +23 -0
  497. data/packaging/debian/docker_images/testbox-debian-6/argparse.py +2374 -0
  498. data/packaging/debian/docker_images/testbox-debian-6/install.sh +78 -0
  499. data/packaging/debian/docker_images/testbox-debian-7/Dockerfile +3 -0
  500. data/packaging/debian/docker_images/testbox-debian-7/Gemfile +2 -0
  501. data/packaging/debian/docker_images/testbox-debian-7/Gemfile.lock +23 -0
  502. data/packaging/debian/docker_images/testbox-debian-7/install.sh +71 -0
  503. data/packaging/debian/docker_images/testbox-debian-8/Dockerfile +3 -0
  504. data/packaging/debian/docker_images/testbox-debian-8/Gemfile +2 -0
  505. data/packaging/debian/docker_images/testbox-debian-8/Gemfile.lock +23 -0
  506. data/packaging/debian/docker_images/testbox-debian-8/install.sh +70 -0
  507. data/packaging/debian/docker_images/testbox-ubuntu-12.04/Dockerfile +3 -0
  508. data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile +2 -0
  509. data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile.lock +23 -0
  510. data/packaging/debian/docker_images/testbox-ubuntu-12.04/install.sh +69 -0
  511. data/packaging/debian/docker_images/testbox-ubuntu-14.04/Dockerfile +3 -0
  512. data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile +2 -0
  513. data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile.lock +23 -0
  514. data/packaging/debian/docker_images/testbox-ubuntu-14.04/install.sh +69 -0
  515. data/packaging/debian/docker_images/testbox-ubuntu-15.04/Dockerfile +3 -0
  516. data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile +2 -0
  517. data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile.lock +23 -0
  518. data/packaging/debian/docker_images/testbox-ubuntu-15.04/install.sh +69 -0
  519. data/packaging/debian/docker_images/testbox-ubuntu-15.10/Dockerfile +3 -0
  520. data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile +2 -0
  521. data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile.lock +23 -0
  522. data/packaging/debian/docker_images/testbox-ubuntu-15.10/install.sh +69 -0
  523. data/packaging/debian/internal/build/Rakefile +235 -0
  524. data/packaging/debian/internal/build/build-passenger-orig-tarball.sh +76 -0
  525. data/packaging/debian/internal/build/build-source-package.rb +121 -0
  526. data/packaging/debian/internal/build/download-nginx-orig-tarball.sh +17 -0
  527. data/packaging/debian/internal/build/rakefile_support.rb +96 -0
  528. data/packaging/debian/internal/build/setup-environment-essentials.sh +15 -0
  529. data/packaging/debian/internal/build/setup-environment.sh +29 -0
  530. data/packaging/debian/internal/lib/distro_info.rb +82 -0
  531. data/packaging/debian/internal/lib/distro_info.sh +303 -0
  532. data/packaging/debian/internal/lib/distro_info.sh.erb +65 -0
  533. data/packaging/debian/internal/lib/library.sh +83 -0
  534. data/packaging/debian/internal/lib/preprocessor.rb +173 -0
  535. data/packaging/debian/internal/lib/tracking.rb +95 -0
  536. data/packaging/debian/internal/lib/tracking_category.rb +45 -0
  537. data/packaging/debian/internal/lib/tracking_database.rb +132 -0
  538. data/packaging/debian/internal/lib/tracking_task.rb +148 -0
  539. data/packaging/debian/internal/lib/utils.rb +78 -0
  540. data/packaging/debian/internal/publish/Rakefile +97 -0
  541. data/packaging/debian/internal/publish/oss-binaries.phusionpassenger.com-fingerprint.txt +1 -0
  542. data/packaging/debian/internal/publish/packagecloud_fingerprint.txt +1 -0
  543. data/packaging/debian/internal/publish/passenger_website_fingerprint.txt +1 -0
  544. data/packaging/debian/internal/publish/preinit.sh +7 -0
  545. data/packaging/debian/internal/publish/rakefile_support.rb +183 -0
  546. data/packaging/debian/internal/scripts/gpg_noninteractive/gpg +11 -0
  547. data/packaging/debian/internal/scripts/initccache.sh +35 -0
  548. data/packaging/debian/internal/scripts/inituidgid.sh +19 -0
  549. data/packaging/debian/internal/scripts/my_init +340 -0
  550. data/packaging/debian/internal/scripts/pin_certificates +34 -0
  551. data/packaging/debian/internal/scripts/regen_distro_info_script.sh +3 -0
  552. data/packaging/debian/internal/scripts/setup-vagrant.sh +12 -0
  553. data/packaging/debian/internal/scripts/setuser +31 -0
  554. data/packaging/debian/internal/shell/initpbuilder.sh +3 -0
  555. data/packaging/debian/internal/shell/preinit.sh +28 -0
  556. data/packaging/debian/internal/shell/sudoers.conf +1 -0
  557. data/packaging/debian/internal/test/apache/apache-24.conf +5 -0
  558. data/packaging/debian/internal/test/apache/apache-pre-24.conf +4 -0
  559. data/packaging/debian/internal/test/apache/vhost.conf +17 -0
  560. data/packaging/debian/internal/test/misc/config.json +15 -0
  561. data/packaging/debian/internal/test/misc/hosts.conf +4 -0
  562. data/packaging/debian/internal/test/misc/init.sh +25 -0
  563. data/packaging/debian/internal/test/misc/nodejs_test_app.js +6 -0
  564. data/packaging/debian/internal/test/misc/python_test_app.py +3 -0
  565. data/packaging/debian/internal/test/misc/ruby_test_app.rb +5 -0
  566. data/packaging/debian/internal/test/misc/test_support.rb +61 -0
  567. data/packaging/debian/internal/test/nginx/vhost.conf +23 -0
  568. data/packaging/debian/internal/test/system_web_server_test.rb +126 -0
  569. data/packaging/debian/internal/test/test.sh +141 -0
  570. data/packaging/debian/jenkins/publish/clear_caches.rb +48 -0
  571. data/packaging/debian/jenkins/publish/publish.sh +69 -0
  572. data/packaging/debian/jenkins/test/test.sh +63 -0
  573. data/packaging/debian/passenger_apt_automation.sublime-project +14 -0
  574. data/packaging/debian/publish +172 -0
  575. data/packaging/debian/shell +116 -0
  576. data/packaging/debian/test +142 -0
  577. metadata +563 -3
  578. metadata.gz.asc +7 -7
  579. data/resources/oss-binaries.phusionpassenger.com.crt +0 -208
@@ -0,0 +1,25 @@
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
@@ -0,0 +1,210 @@
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
@@ -0,0 +1,1989 @@
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
+