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.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/CHANGELOG +15 -0
- data/bin/passenger-install-apache2-module +2 -1
- data/bin/passenger-install-nginx-module +8 -2
- data/ext/apache2/Hooks.cpp +21 -2
- data/ext/apache2/MergeDirConfig.cpp +40 -40
- data/ext/common/ApplicationPool2/Group.h +14 -10
- data/ext/common/ApplicationPool2/Implementation.cpp +13 -7
- data/ext/common/ApplicationPool2/SmartSpawner.h +4 -1
- data/ext/common/Constants.h +1 -1
- data/ext/nginx/ContentHandler.c +17 -1
- data/lib/phusion_passenger.rb +4 -5
- data/lib/phusion_passenger/platform_info/depcheck_specs/libs.rb +4 -3
- data/lib/phusion_passenger/platform_info/openssl.rb +61 -0
- data/lib/phusion_passenger/standalone/runtime_installer.rb +27 -22
- data/packaging/debian/LICENSE.md +19 -0
- data/packaging/debian/README.md +320 -0
- data/packaging/debian/Vagrantfile +25 -0
- data/packaging/debian/build +210 -0
- data/packaging/debian/debian_specs/nginx/changelog +1989 -0
- data/packaging/debian/debian_specs/nginx/compat.erb +5 -0
- data/packaging/debian/debian_specs/nginx/conf/fastcgi.conf +25 -0
- data/packaging/debian/debian_specs/nginx/conf/fastcgi_params +24 -0
- data/packaging/debian/debian_specs/nginx/conf/koi-utf +109 -0
- data/packaging/debian/debian_specs/nginx/conf/koi-win +103 -0
- data/packaging/debian/debian_specs/nginx/conf/mime.types +89 -0
- data/packaging/debian/debian_specs/nginx/conf/nginx.conf.erb +97 -0
- data/packaging/debian/debian_specs/nginx/conf/proxy_params +4 -0
- data/packaging/debian/debian_specs/nginx/conf/scgi_params +16 -0
- data/packaging/debian/debian_specs/nginx/conf/sites-available/default.erb +93 -0
- data/packaging/debian/debian_specs/nginx/conf/snippets/fastcgi-php.conf +13 -0
- data/packaging/debian/debian_specs/nginx/conf/snippets/snakeoil.conf +5 -0
- data/packaging/debian/debian_specs/nginx/conf/uwsgi_params +16 -0
- data/packaging/debian/debian_specs/nginx/conf/win-utf +125 -0
- data/packaging/debian/debian_specs/nginx/control.erb +226 -0
- data/packaging/debian/debian_specs/nginx/copyright +196 -0
- data/packaging/debian/debian_specs/nginx/debian-full.lintian-overrides +1 -0
- data/packaging/debian/debian_specs/nginx/gbp.conf +2 -0
- data/packaging/debian/debian_specs/nginx/help/docs/fcgiwrap +14 -0
- data/packaging/debian/debian_specs/nginx/help/docs/php +119 -0
- data/packaging/debian/debian_specs/nginx/help/docs/support-irc +28 -0
- data/packaging/debian/debian_specs/nginx/help/docs/upstream +51 -0
- data/packaging/debian/debian_specs/nginx/help/examples/drupal +114 -0
- data/packaging/debian/debian_specs/nginx/help/examples/http +59 -0
- data/packaging/debian/debian_specs/nginx/help/examples/mail +30 -0
- data/packaging/debian/debian_specs/nginx/help/examples/mailman +59 -0
- data/packaging/debian/debian_specs/nginx/help/examples/nginx.conf +34 -0
- data/packaging/debian/debian_specs/nginx/help/examples/nginx_modsite +162 -0
- data/packaging/debian/debian_specs/nginx/help/examples/virtual_hosts +155 -0
- data/packaging/debian/debian_specs/nginx/help/examples/wordpress +74 -0
- data/packaging/debian/debian_specs/nginx/helpers.rb +41 -0
- data/packaging/debian/debian_specs/nginx/index-debian.html.in +32 -0
- data/packaging/debian/debian_specs/nginx/index-ubuntu.html.in +32 -0
- data/packaging/debian/debian_specs/nginx/index.html.erb +10 -0
- data/packaging/debian/debian_specs/nginx/modules/README.Modules-versions +65 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/README.markdown +510 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/config +5 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/doc/HttpHeadersMoreModule.wiki +395 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ddebug.h +119 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.c +348 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.h +80 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.c +826 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.h +26 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.c +716 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.h +26 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.c +380 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.h +52 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/util/build.sh +32 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/valgrind.suppress +215 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ChangeLog +35 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/LICENSE +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/README.md +93 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/config +4 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ngx_http_auth_pam_module.c +462 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/CHANGES +66 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/LICENSE +26 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/README.md +171 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/TODO.md +7 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/config +21 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/ngx_cache_purge_module.c +1803 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/README +29 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/config +9 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/ngx_http_dav_ext_module.c +824 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README +139 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README_AUTO_LIB +395 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/TODO +1 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/array +10 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/palloc +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/build +597 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_replacements +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_types +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_args +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_locs +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_macros +35 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/contexts +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/header_files +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/headers +4 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/module_dependencies +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/modules_optional +15 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/prefixes +2 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/array.h +7 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_cmd_basic.h +43 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_merge.h +78 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/palloc.h +6 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/text/autogen +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/config +49 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/action_macros +63 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/conf_cmds +62 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/modules/set_var +124 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/patches/more_logging_info +48 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/upstream/list +45 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/README +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/config +4 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/ngx_http_set_var_examples_module.c +136 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/ngx_auto_lib_core +797 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/CHANGES +17 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/LICENSE +24 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_array.h +113 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_basic.h +2203 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_extra.h +5423 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_merge.h +227 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.c +72 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.h +98 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_includes.h +66 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_palloc.h +112 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/auto_config +16 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/expose_rewrite_functions +291 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/rewrite_phase_handler +19 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/md5.h +117 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/murmurhash2.c +77 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/sha.h +200 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.c +155 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.h +58 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.c +43 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.h +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.c +129 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.h +30 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.c +192 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.h +21 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.c +396 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.h +44 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.c +72 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.h +171 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.c +57 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.h +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.c +82 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.h +45 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.c +138 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.h +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http_headers.h +35 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.c +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.h +165 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_parse.h +67 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.c +583 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.c +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.h +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.c +215 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.h +7 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.c +103 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.h +26 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.c +602 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.h +44 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.c +434 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.h +37 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string_util.h +14 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.c +205 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.h +27 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.c +45 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.h +6 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/LICENSE +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/README.markdown +1850 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/config +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/doc/HttpEchoModule.wiki +1558 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ddebug.h +109 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.c +344 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.h +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.c +282 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.h +15 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.c +183 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.h +16 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.c +429 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.h +18 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.c +178 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.h +13 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.c +667 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.h +137 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.c +452 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.h +31 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.c +208 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.h +16 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.c +788 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.h +19 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.c +96 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.h +13 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.c +298 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.h +58 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.c +110 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.h +9 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/build.sh +45 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/releng +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/wiki2pod.pl +131 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/valgrind.suppress +38 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/LICENCE +24 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/README +206 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/changelog.txt +54 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/config +26 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/protocol.txt +191 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.c +59 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.h +73 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.c +783 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.h +31 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module_setup.c +361 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_types.h +120 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.c +1180 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.h +1 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.c +146 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.h +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_store.h +51 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.c +178 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.h +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.c +246 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.h +9 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/Changes +51 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/README.markdown +6954 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/config +363 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/doc/HttpLuaModule.wiki +5898 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/dtrace/ngx_lua_provider.d +61 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/Makefile +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/lib/RecvUntil.pm +138 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/t/sanity.t +140 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/api/ngx_http_lua_api.h +52 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ddebug.h +82 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.c +377 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_api.c +77 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.c +537 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.c +632 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.h +31 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.c +296 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.h +24 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.c +175 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.c +887 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_common.h +478 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.c +67 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.h +19 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.c +148 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.c +369 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.h +26 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.c +483 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.c +379 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.c +216 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.c +1081 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.h +56 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.c +58 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.h +33 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.c +302 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.h +29 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.c +1370 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.c +782 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.c +625 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.c +42 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.c +320 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.h +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.c +300 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.c +227 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.c +252 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_module.c +924 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.c +184 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.h +21 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.c +794 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.h +28 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.c +106 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.c +94 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.h +13 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_probe.h +85 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.c +2468 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.c +1169 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.c +252 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.h +19 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.c +351 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.c +538 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.h +86 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.c +216 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.h +15 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.c +1844 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.h +52 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.c +191 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.c +5314 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.h +156 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.c +1624 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.h +56 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.c +704 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.c +1741 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.h +46 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.c +278 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.h +21 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.c +661 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.c +110 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.c +283 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.h +36 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.c +3972 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.h +423 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.c +499 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.c +64 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.h +17 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/tapset/ngx_lua.stp +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build.sh +39 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build2.sh +55 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/fix-comments +27 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/gdbinit +415 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/ngx-links +62 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/reindex +64 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/releng +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/retab +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/revim +102 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/run_test.sh +10 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/update-readme.sh +4 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/valgrind.suppress +144 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/CHANGES +107 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/LICENSE +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/Makefile +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/README +329 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/config +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/ngx_http_uploadprogress_module.c +1774 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/README +53 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/config +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/ngx_http_upstream_fair_module.c +1356 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/CHANGELOG.md +37 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/HACKING.md +24 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/LICENSE +20 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/README.rst +182 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/config +8 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/nginx-0.6-support.patch +23 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/ngx_http_fancyindex_module.c +1305 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.awk +52 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.h +103 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.html +102 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/CHANGES +37 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/README +141 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/config +3 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.google_code_home_page.wiki +120 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.html +199 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.wiki +123 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/ngx_http_subs_filter_module.c +1298 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/README +275 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/AutoInstall.pm +820 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install.pm +470 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/AutoInstall.pm +82 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Base.pm +83 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Can.pm +81 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Fetch.pm +93 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Include.pm +34 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Makefile.pm +415 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Metadata.pm +716 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/TestBase.pm +29 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Win32.pm +64 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/WriteAll.pm +63 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Spiffy.pm +539 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base.pm +682 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base/Filter.pm +341 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder.pm +1413 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder/Module.pm +81 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/More.pm +735 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx.pm +315 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/LWP.pm +524 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Socket.pm +1749 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Util.pm +874 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs.t +136 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_capture.t +32 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_fix_string.t +32 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_regex.t +108 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_types.t +59 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/test.sh +5 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/update-readme.sh +7 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2google_code_homepage.pl +29 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2pod.pl +129 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.NEWS +135 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.README.Debian +45 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.dirs.erb +32 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.install +3 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.lintian-overrides +2 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.manpages +1 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.default +10 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.init.erb +214 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.logrotate +18 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.service.erb +37 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.postinst.erb +66 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.postrm.erb +46 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.preinst +47 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.prerm.erb +28 -0
- data/packaging/debian/debian_specs/nginx/nginx-doc.docs +2 -0
- data/packaging/debian/debian_specs/nginx/nginx-doc.examples +1 -0
- data/packaging/debian/debian_specs/nginx/nginx-extras.install.erb +17 -0
- data/packaging/debian/debian_specs/nginx/nginx-extras.lintian-overrides +1 -0
- data/packaging/debian/debian_specs/nginx/nginx-extras.postinst.erb +44 -0
- data/packaging/debian/debian_specs/nginx/nginx-extras.prerm +22 -0
- data/packaging/debian/debian_specs/nginx/nginx.1 +47 -0
- data/packaging/debian/debian_specs/nginx/patches/perl-use-dpkg-buildflags.patch +23 -0
- data/packaging/debian/debian_specs/nginx/patches/series +1 -0
- data/packaging/debian/debian_specs/nginx/rules.erb +185 -0
- data/packaging/debian/debian_specs/nginx/source/format +1 -0
- data/packaging/debian/debian_specs/nginx/tests/control +4 -0
- data/packaging/debian/debian_specs/nginx/ufw/nginx +14 -0
- data/packaging/debian/debian_specs/nginx/upstream/signing-key.asc +34 -0
- data/packaging/debian/debian_specs/nginx/watch +3 -0
- data/packaging/debian/debian_specs/passenger/README.Debian +12 -0
- data/packaging/debian/debian_specs/passenger/changelog +316 -0
- data/packaging/debian/debian_specs/passenger/compat +1 -0
- data/packaging/debian/debian_specs/passenger/control.erb +123 -0
- data/packaging/debian/debian_specs/passenger/copyright +385 -0
- data/packaging/debian/debian_specs/passenger/helpers.rb +24 -0
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.install +3 -0
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.postinst +36 -0
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.prerm +15 -0
- data/packaging/debian/debian_specs/passenger/locations.ini.erb +14 -0
- data/packaging/debian/debian_specs/passenger/passenger-dev.install.erb +3 -0
- data/packaging/debian/debian_specs/passenger/passenger-doc.install.erb +2 -0
- data/packaging/debian/debian_specs/passenger/passenger.conf +6 -0
- data/packaging/debian/debian_specs/passenger/passenger.docs +4 -0
- data/packaging/debian/debian_specs/passenger/passenger.install.erb +16 -0
- data/packaging/debian/debian_specs/passenger/passenger.load +3 -0
- data/packaging/debian/debian_specs/passenger/passenger.manpages +3 -0
- data/packaging/debian/debian_specs/passenger/passenger_free_ruby.c +29 -0
- data/packaging/debian/debian_specs/passenger/passenger_ruby_utils.c +54 -0
- data/packaging/debian/debian_specs/passenger/passenger_system_ruby.c.erb +37 -0
- data/packaging/debian/debian_specs/passenger/patches/series +0 -0
- data/packaging/debian/debian_specs/passenger/rules.erb +84 -0
- data/packaging/debian/debian_specs/passenger/source/format +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/README.Debian +12 -0
- data/packaging/debian/debian_specs/passenger_enterprise/changelog +316 -0
- data/packaging/debian/debian_specs/passenger_enterprise/compat +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/control.erb +123 -0
- data/packaging/debian/debian_specs/passenger_enterprise/copyright +385 -0
- data/packaging/debian/debian_specs/passenger_enterprise/helpers.rb +2 -0
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.install +3 -0
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.postinst +36 -0
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.prerm +15 -0
- data/packaging/debian/debian_specs/passenger_enterprise/locations.ini.erb +14 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-dev.install.erb +3 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-doc.install.erb +2 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.docs +4 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.install.erb +14 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.manpages +3 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger.conf +6 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger.load +3 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_free_ruby.c.erb +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_ruby_utils.c.erb +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_system_ruby.c.erb +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/patches/series +0 -0
- data/packaging/debian/debian_specs/passenger_enterprise/rules.erb +84 -0
- data/packaging/debian/debian_specs/passenger_enterprise/source/format +1 -0
- data/packaging/debian/docker_images/Makefile +38 -0
- data/packaging/debian/docker_images/buildbox/CONTAINER_VERSION.txt +0 -0
- data/packaging/debian/docker_images/buildbox/Dockerfile +3 -0
- data/packaging/debian/docker_images/buildbox/Gemfile +9 -0
- data/packaging/debian/docker_images/buildbox/Gemfile.lock +42 -0
- data/packaging/debian/docker_images/buildbox/install.sh +85 -0
- data/packaging/debian/docker_images/buildbox/pbuilderrc +4 -0
- data/packaging/debian/docker_images/buildbox/sudoers.conf +6 -0
- data/packaging/debian/docker_images/setup-buildbox-docker-image +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-6 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-7 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-8 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-12.04 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-14.04 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.04 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.10 +7 -0
- data/packaging/debian/docker_images/testbox-debian-6/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-debian-6/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-debian-6/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-debian-6/argparse.py +2374 -0
- data/packaging/debian/docker_images/testbox-debian-6/install.sh +78 -0
- data/packaging/debian/docker_images/testbox-debian-7/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-debian-7/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-debian-7/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-debian-7/install.sh +71 -0
- data/packaging/debian/docker_images/testbox-debian-8/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-debian-8/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-debian-8/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-debian-8/install.sh +70 -0
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/install.sh +69 -0
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/install.sh +69 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/install.sh +69 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/install.sh +69 -0
- data/packaging/debian/internal/build/Rakefile +235 -0
- data/packaging/debian/internal/build/build-passenger-orig-tarball.sh +76 -0
- data/packaging/debian/internal/build/build-source-package.rb +121 -0
- data/packaging/debian/internal/build/download-nginx-orig-tarball.sh +17 -0
- data/packaging/debian/internal/build/rakefile_support.rb +96 -0
- data/packaging/debian/internal/build/setup-environment-essentials.sh +15 -0
- data/packaging/debian/internal/build/setup-environment.sh +29 -0
- data/packaging/debian/internal/lib/distro_info.rb +82 -0
- data/packaging/debian/internal/lib/distro_info.sh +303 -0
- data/packaging/debian/internal/lib/distro_info.sh.erb +65 -0
- data/packaging/debian/internal/lib/library.sh +83 -0
- data/packaging/debian/internal/lib/preprocessor.rb +173 -0
- data/packaging/debian/internal/lib/tracking.rb +95 -0
- data/packaging/debian/internal/lib/tracking_category.rb +45 -0
- data/packaging/debian/internal/lib/tracking_database.rb +132 -0
- data/packaging/debian/internal/lib/tracking_task.rb +148 -0
- data/packaging/debian/internal/lib/utils.rb +78 -0
- data/packaging/debian/internal/publish/Rakefile +97 -0
- data/packaging/debian/internal/publish/oss-binaries.phusionpassenger.com-fingerprint.txt +1 -0
- data/packaging/debian/internal/publish/packagecloud_fingerprint.txt +1 -0
- data/packaging/debian/internal/publish/passenger_website_fingerprint.txt +1 -0
- data/packaging/debian/internal/publish/preinit.sh +7 -0
- data/packaging/debian/internal/publish/rakefile_support.rb +183 -0
- data/packaging/debian/internal/scripts/gpg_noninteractive/gpg +11 -0
- data/packaging/debian/internal/scripts/initccache.sh +35 -0
- data/packaging/debian/internal/scripts/inituidgid.sh +19 -0
- data/packaging/debian/internal/scripts/my_init +340 -0
- data/packaging/debian/internal/scripts/pin_certificates +34 -0
- data/packaging/debian/internal/scripts/regen_distro_info_script.sh +3 -0
- data/packaging/debian/internal/scripts/setup-vagrant.sh +12 -0
- data/packaging/debian/internal/scripts/setuser +31 -0
- data/packaging/debian/internal/shell/initpbuilder.sh +3 -0
- data/packaging/debian/internal/shell/preinit.sh +28 -0
- data/packaging/debian/internal/shell/sudoers.conf +1 -0
- data/packaging/debian/internal/test/apache/apache-24.conf +5 -0
- data/packaging/debian/internal/test/apache/apache-pre-24.conf +4 -0
- data/packaging/debian/internal/test/apache/vhost.conf +17 -0
- data/packaging/debian/internal/test/misc/config.json +15 -0
- data/packaging/debian/internal/test/misc/hosts.conf +4 -0
- data/packaging/debian/internal/test/misc/init.sh +25 -0
- data/packaging/debian/internal/test/misc/nodejs_test_app.js +6 -0
- data/packaging/debian/internal/test/misc/python_test_app.py +3 -0
- data/packaging/debian/internal/test/misc/ruby_test_app.rb +5 -0
- data/packaging/debian/internal/test/misc/test_support.rb +61 -0
- data/packaging/debian/internal/test/nginx/vhost.conf +23 -0
- data/packaging/debian/internal/test/system_web_server_test.rb +126 -0
- data/packaging/debian/internal/test/test.sh +141 -0
- data/packaging/debian/jenkins/publish/clear_caches.rb +48 -0
- data/packaging/debian/jenkins/publish/publish.sh +69 -0
- data/packaging/debian/jenkins/test/test.sh +63 -0
- data/packaging/debian/passenger_apt_automation.sublime-project +14 -0
- data/packaging/debian/publish +172 -0
- data/packaging/debian/shell +116 -0
- data/packaging/debian/test +142 -0
- metadata +563 -3
- metadata.gz.asc +7 -7
- data/resources/oss-binaries.phusionpassenger.com.crt +0 -208
@@ -0,0 +1,874 @@
|
|
1
|
+
package Test::Nginx::Util;
|
2
|
+
|
3
|
+
use strict;
|
4
|
+
use warnings;
|
5
|
+
|
6
|
+
our $VERSION = '0.17';
|
7
|
+
|
8
|
+
use base 'Exporter';
|
9
|
+
|
10
|
+
use POSIX qw( SIGQUIT SIGKILL SIGTERM );
|
11
|
+
use File::Spec ();
|
12
|
+
use HTTP::Response;
|
13
|
+
use Cwd qw( cwd );
|
14
|
+
use List::Util qw( shuffle );
|
15
|
+
use Time::HiRes qw( sleep );
|
16
|
+
use ExtUtils::MakeMaker ();
|
17
|
+
|
18
|
+
our $LatestNginxVersion = 0.008039;
|
19
|
+
|
20
|
+
our $NoNginxManager = $ENV{TEST_NGINX_NO_NGINX_MANAGER} || 0;
|
21
|
+
our $Profiling = 0;
|
22
|
+
|
23
|
+
our $RepeatEach = 1;
|
24
|
+
our $MAX_PROCESSES = 10;
|
25
|
+
|
26
|
+
our $NoShuffle = $ENV{TEST_NGINX_NO_SHUFFLE} || 0;
|
27
|
+
|
28
|
+
our $UseValgrind = $ENV{TEST_NGINX_USE_VALGRIND};
|
29
|
+
|
30
|
+
our $EventType = $ENV{TEST_NGINX_EVENT_TYPE};
|
31
|
+
|
32
|
+
sub no_shuffle () {
|
33
|
+
$NoShuffle = 1;
|
34
|
+
}
|
35
|
+
|
36
|
+
sub no_nginx_manager () {
|
37
|
+
$NoNginxManager = 1;
|
38
|
+
}
|
39
|
+
|
40
|
+
our $ForkManager;
|
41
|
+
|
42
|
+
if ($Profiling || $UseValgrind) {
|
43
|
+
eval "use Parallel::ForkManager";
|
44
|
+
if ($@) {
|
45
|
+
die "Failed to load Parallel::ForkManager: $@\n";
|
46
|
+
}
|
47
|
+
$ForkManager = new Parallel::ForkManager($MAX_PROCESSES);
|
48
|
+
}
|
49
|
+
|
50
|
+
our $NginxBinary = $ENV{TEST_NGINX_BINARY} || 'nginx';
|
51
|
+
our $Workers = 1;
|
52
|
+
our $WorkerConnections = 64;
|
53
|
+
our $LogLevel = $ENV{TEST_NGINX_LOG_LEVEL} || 'debug';
|
54
|
+
our $MasterProcessEnabled = $ENV{TEST_NGINX_MASTER_PROCESS} || 'off';
|
55
|
+
our $DaemonEnabled = 'on';
|
56
|
+
our $ServerPort = $ENV{TEST_NGINX_SERVER_PORT} || $ENV{TEST_NGINX_PORT} || 1984;
|
57
|
+
our $ServerPortForClient = $ENV{TEST_NGINX_CLIENT_PORT} || $ENV{TEST_NGINX_PORT} || 1984;
|
58
|
+
our $NoRootLocation = 0;
|
59
|
+
our $TestNginxSleep = $ENV{TEST_NGINX_SLEEP} || 0;
|
60
|
+
our $BuildSlaveName = $ENV{TEST_NGINX_BUILDSLAVE};
|
61
|
+
our $ForceRestartOnTest = (defined $ENV{TEST_NGINX_FORCE_RESTART_ON_TEST})
|
62
|
+
? $ENV{TEST_NGINX_FORCE_RESTART_ON_TEST} : 1;
|
63
|
+
|
64
|
+
sub server_port (@) {
|
65
|
+
if (@_) {
|
66
|
+
$ServerPort = shift;
|
67
|
+
} else {
|
68
|
+
$ServerPort;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
sub repeat_each (@) {
|
73
|
+
if (@_) {
|
74
|
+
$RepeatEach = shift;
|
75
|
+
} else {
|
76
|
+
return $RepeatEach;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
sub worker_connections (@) {
|
81
|
+
if (@_) {
|
82
|
+
$WorkerConnections = shift;
|
83
|
+
} else {
|
84
|
+
return $WorkerConnections;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
sub no_root_location () {
|
89
|
+
$NoRootLocation = 1;
|
90
|
+
}
|
91
|
+
|
92
|
+
sub workers (@) {
|
93
|
+
if (@_) {
|
94
|
+
#warn "setting workers to $_[0]";
|
95
|
+
$Workers = shift;
|
96
|
+
} else {
|
97
|
+
return $Workers;
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
sub log_level (@) {
|
102
|
+
if (@_) {
|
103
|
+
$LogLevel = shift;
|
104
|
+
} else {
|
105
|
+
return $LogLevel;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
sub master_on () {
|
110
|
+
$MasterProcessEnabled = 'on';
|
111
|
+
}
|
112
|
+
|
113
|
+
sub master_process_enabled (@) {
|
114
|
+
if (@_) {
|
115
|
+
$MasterProcessEnabled = shift() ? 'on' : 'off';
|
116
|
+
} else {
|
117
|
+
return $MasterProcessEnabled;
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
our @EXPORT_OK = qw(
|
122
|
+
setup_server_root
|
123
|
+
write_config_file
|
124
|
+
get_canon_version
|
125
|
+
get_nginx_version
|
126
|
+
trim
|
127
|
+
show_all_chars
|
128
|
+
parse_headers
|
129
|
+
run_tests
|
130
|
+
$ServerPortForClient
|
131
|
+
$ServerPort
|
132
|
+
$NginxVersion
|
133
|
+
$PidFile
|
134
|
+
$ServRoot
|
135
|
+
$ConfFile
|
136
|
+
$RunTestHelper
|
137
|
+
$NoNginxManager
|
138
|
+
$RepeatEach
|
139
|
+
worker_connections
|
140
|
+
workers
|
141
|
+
master_on
|
142
|
+
config_preamble
|
143
|
+
repeat_each
|
144
|
+
master_process_enabled
|
145
|
+
log_level
|
146
|
+
no_shuffle
|
147
|
+
no_root_location
|
148
|
+
html_dir
|
149
|
+
server_root
|
150
|
+
server_port
|
151
|
+
no_nginx_manager
|
152
|
+
);
|
153
|
+
|
154
|
+
|
155
|
+
if ($Profiling || $UseValgrind) {
|
156
|
+
$DaemonEnabled = 'off';
|
157
|
+
$MasterProcessEnabled = 'off';
|
158
|
+
}
|
159
|
+
|
160
|
+
our $ConfigPreamble = '';
|
161
|
+
|
162
|
+
sub config_preamble ($) {
|
163
|
+
$ConfigPreamble = shift;
|
164
|
+
}
|
165
|
+
|
166
|
+
our $RunTestHelper;
|
167
|
+
|
168
|
+
our $NginxVersion;
|
169
|
+
our $NginxRawVersion;
|
170
|
+
our $TODO;
|
171
|
+
|
172
|
+
#our ($PrevRequest)
|
173
|
+
our $PrevConfig;
|
174
|
+
|
175
|
+
our $ServRoot = $ENV{TEST_NGINX_SERVROOT} || File::Spec->catfile(cwd() || '.', 't/servroot');
|
176
|
+
our $LogDir = File::Spec->catfile($ServRoot, 'logs');
|
177
|
+
our $ErrLogFile = File::Spec->catfile($LogDir, 'error.log');
|
178
|
+
our $AccLogFile = File::Spec->catfile($LogDir, 'access.log');
|
179
|
+
our $HtmlDir = File::Spec->catfile($ServRoot, 'html');
|
180
|
+
our $ConfDir = File::Spec->catfile($ServRoot, 'conf');
|
181
|
+
our $ConfFile = File::Spec->catfile($ConfDir, 'nginx.conf');
|
182
|
+
our $PidFile = File::Spec->catfile($LogDir, 'nginx.pid');
|
183
|
+
|
184
|
+
sub html_dir () {
|
185
|
+
return $HtmlDir;
|
186
|
+
}
|
187
|
+
|
188
|
+
sub server_root () {
|
189
|
+
return $ServRoot;
|
190
|
+
}
|
191
|
+
|
192
|
+
sub bail_out ($) {
|
193
|
+
Test::More::BAIL_OUT(@_);
|
194
|
+
}
|
195
|
+
|
196
|
+
sub run_tests () {
|
197
|
+
$NginxVersion = get_nginx_version();
|
198
|
+
|
199
|
+
if (defined $NginxVersion) {
|
200
|
+
#warn "[INFO] Using nginx version $NginxVersion ($NginxRawVersion)\n";
|
201
|
+
}
|
202
|
+
|
203
|
+
for my $block ($NoShuffle ? Test::Base::blocks() : shuffle Test::Base::blocks()) {
|
204
|
+
#for (1..3) {
|
205
|
+
run_test($block);
|
206
|
+
#}
|
207
|
+
}
|
208
|
+
|
209
|
+
if ($Profiling || $UseValgrind) {
|
210
|
+
$ForkManager->wait_all_children;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
sub setup_server_root () {
|
215
|
+
if (-d $ServRoot) {
|
216
|
+
# Take special care, so we won't accidentally remove
|
217
|
+
# real user data when TEST_NGINX_SERVROOT is mis-used.
|
218
|
+
system("rm -rf $ConfDir > /dev/null") == 0 or
|
219
|
+
die "Can't remove $ConfDir";
|
220
|
+
system("rm -rf $HtmlDir > /dev/null") == 0 or
|
221
|
+
die "Can't remove $HtmlDir";
|
222
|
+
system("rm -rf $LogDir > /dev/null") == 0 or
|
223
|
+
die "Can't remove $LogDir";
|
224
|
+
system("rm -rf $ServRoot/*_temp > /dev/null") == 0 or
|
225
|
+
die "Can't remove $ServRoot/*_temp";
|
226
|
+
system("rmdir $ServRoot > /dev/null") == 0 or
|
227
|
+
die "Can't remove $ServRoot (not empty?)";
|
228
|
+
}
|
229
|
+
mkdir $ServRoot or
|
230
|
+
die "Failed to do mkdir $ServRoot\n";
|
231
|
+
mkdir $LogDir or
|
232
|
+
die "Failed to do mkdir $LogDir\n";
|
233
|
+
mkdir $HtmlDir or
|
234
|
+
die "Failed to do mkdir $HtmlDir\n";
|
235
|
+
|
236
|
+
my $index_file = "$HtmlDir/index.html";
|
237
|
+
|
238
|
+
open my $out, ">$index_file" or
|
239
|
+
die "Can't open $index_file for writing: $!\n";
|
240
|
+
|
241
|
+
print $out '<html><head><title>It works!</title></head><body>It works!</body></html>';
|
242
|
+
|
243
|
+
close $out;
|
244
|
+
|
245
|
+
mkdir $ConfDir or
|
246
|
+
die "Failed to do mkdir $ConfDir\n";
|
247
|
+
}
|
248
|
+
|
249
|
+
sub write_user_files ($) {
|
250
|
+
my $block = shift;
|
251
|
+
|
252
|
+
my $name = $block->name;
|
253
|
+
|
254
|
+
if ($block->user_files) {
|
255
|
+
my $raw = $block->user_files;
|
256
|
+
|
257
|
+
open my $in, '<', \$raw;
|
258
|
+
|
259
|
+
my @files;
|
260
|
+
my ($fname, $body, $date);
|
261
|
+
while (<$in>) {
|
262
|
+
if (/>>> (\S+)(?:\s+(.+))?/) {
|
263
|
+
if ($fname) {
|
264
|
+
push @files, [$fname, $body, $date];
|
265
|
+
}
|
266
|
+
|
267
|
+
$fname = $1;
|
268
|
+
$date = $2;
|
269
|
+
undef $body;
|
270
|
+
} else {
|
271
|
+
$body .= $_;
|
272
|
+
}
|
273
|
+
}
|
274
|
+
|
275
|
+
if ($fname) {
|
276
|
+
push @files, [$fname, $body, $date];
|
277
|
+
}
|
278
|
+
|
279
|
+
for my $file (@files) {
|
280
|
+
my ($fname, $body, $date) = @$file;
|
281
|
+
#warn "write file $fname with content [$body]\n";
|
282
|
+
|
283
|
+
if (!defined $body) {
|
284
|
+
$body = '';
|
285
|
+
}
|
286
|
+
|
287
|
+
if ($fname =~ /(.*)\//) {
|
288
|
+
my $dir = "$HtmlDir/$1";
|
289
|
+
if (! -d $dir) {
|
290
|
+
mkdir $dir or die "$name - Cannot create directory ", $dir;
|
291
|
+
}
|
292
|
+
}
|
293
|
+
|
294
|
+
open my $out, ">$HtmlDir/$fname" or
|
295
|
+
die "$name - Cannot open $HtmlDir/$fname for writing: $!\n";
|
296
|
+
print $out $body;
|
297
|
+
close $out;
|
298
|
+
|
299
|
+
if ($date) {
|
300
|
+
my $cmd = "touch -t '$date' $HtmlDir/$fname";
|
301
|
+
system($cmd) == 0 or
|
302
|
+
die "Failed to run shell command: $cmd\n";
|
303
|
+
}
|
304
|
+
}
|
305
|
+
}
|
306
|
+
}
|
307
|
+
|
308
|
+
sub write_config_file ($$$) {
|
309
|
+
my ($config, $http_config, $main_config) = @_;
|
310
|
+
|
311
|
+
$http_config = expand_env_in_config($http_config);
|
312
|
+
|
313
|
+
if (!defined $config) {
|
314
|
+
$config = '';
|
315
|
+
}
|
316
|
+
|
317
|
+
if (!defined $http_config) {
|
318
|
+
$http_config = '';
|
319
|
+
}
|
320
|
+
|
321
|
+
if (!defined $main_config) {
|
322
|
+
$main_config = '';
|
323
|
+
}
|
324
|
+
|
325
|
+
open my $out, ">$ConfFile" or
|
326
|
+
die "Can't open $ConfFile for writing: $!\n";
|
327
|
+
print $out <<_EOC_;
|
328
|
+
worker_processes $Workers;
|
329
|
+
daemon $DaemonEnabled;
|
330
|
+
master_process $MasterProcessEnabled;
|
331
|
+
error_log $ErrLogFile $LogLevel;
|
332
|
+
pid $PidFile;
|
333
|
+
|
334
|
+
$main_config
|
335
|
+
|
336
|
+
http {
|
337
|
+
access_log $AccLogFile;
|
338
|
+
|
339
|
+
default_type text/plain;
|
340
|
+
keepalive_timeout 68;
|
341
|
+
|
342
|
+
$http_config
|
343
|
+
|
344
|
+
server {
|
345
|
+
listen $ServerPort;
|
346
|
+
server_name 'localhost';
|
347
|
+
|
348
|
+
client_max_body_size 30M;
|
349
|
+
#client_body_buffer_size 4k;
|
350
|
+
|
351
|
+
# Begin preamble config...
|
352
|
+
$ConfigPreamble
|
353
|
+
# End preamble config...
|
354
|
+
|
355
|
+
# Begin test case config...
|
356
|
+
$config
|
357
|
+
# End test case config.
|
358
|
+
|
359
|
+
_EOC_
|
360
|
+
|
361
|
+
if (! $NoRootLocation) {
|
362
|
+
print $out <<_EOC_;
|
363
|
+
location / {
|
364
|
+
root $HtmlDir;
|
365
|
+
index index.html index.htm;
|
366
|
+
}
|
367
|
+
_EOC_
|
368
|
+
}
|
369
|
+
|
370
|
+
print $out <<_EOC_;
|
371
|
+
}
|
372
|
+
}
|
373
|
+
|
374
|
+
events {
|
375
|
+
worker_connections $WorkerConnections;
|
376
|
+
_EOC_
|
377
|
+
|
378
|
+
if ($EventType) {
|
379
|
+
print $out <<_EOC_;
|
380
|
+
use $EventType;
|
381
|
+
_EOC_
|
382
|
+
}
|
383
|
+
|
384
|
+
print $out "}\n";
|
385
|
+
|
386
|
+
close $out;
|
387
|
+
}
|
388
|
+
|
389
|
+
sub get_canon_version (@) {
|
390
|
+
sprintf "%d.%03d%03d", $_[0], $_[1], $_[2];
|
391
|
+
}
|
392
|
+
|
393
|
+
sub get_nginx_version () {
|
394
|
+
my $out = `$NginxBinary -V 2>&1`;
|
395
|
+
if (!defined $out || $? != 0) {
|
396
|
+
warn "Failed to get the version of the Nginx in PATH.\n";
|
397
|
+
}
|
398
|
+
if ($out =~ m{(?:nginx|ngx_openresty)/(\d+)\.(\d+)\.(\d+)}s) {
|
399
|
+
$NginxRawVersion = "$1.$2.$3";
|
400
|
+
return get_canon_version($1, $2, $3);
|
401
|
+
}
|
402
|
+
warn "Failed to parse the output of \"nginx -V\": $out\n";
|
403
|
+
return undef;
|
404
|
+
}
|
405
|
+
|
406
|
+
sub get_pid_from_pidfile ($) {
|
407
|
+
my ($name) = @_;
|
408
|
+
open my $in, $PidFile or
|
409
|
+
bail_out("$name - Failed to open the pid file $PidFile for reading: $!");
|
410
|
+
my $pid = do { local $/; <$in> };
|
411
|
+
chomp $pid;
|
412
|
+
#warn "Pid: $pid\n";
|
413
|
+
close $in;
|
414
|
+
return $pid;
|
415
|
+
}
|
416
|
+
|
417
|
+
sub trim ($) {
|
418
|
+
(my $s = shift) =~ s/^\s+|\s+$//g;
|
419
|
+
$s =~ s/\n/ /gs;
|
420
|
+
$s =~ s/\s{2,}/ /gs;
|
421
|
+
$s;
|
422
|
+
}
|
423
|
+
|
424
|
+
sub show_all_chars ($) {
|
425
|
+
my $s = shift;
|
426
|
+
$s =~ s/\n/\\n/gs;
|
427
|
+
$s =~ s/\r/\\r/gs;
|
428
|
+
$s =~ s/\t/\\t/gs;
|
429
|
+
$s;
|
430
|
+
}
|
431
|
+
|
432
|
+
sub parse_headers ($) {
|
433
|
+
my $s = shift;
|
434
|
+
my %headers;
|
435
|
+
open my $in, '<', \$s;
|
436
|
+
while (<$in>) {
|
437
|
+
s/^\s+|\s+$//g;
|
438
|
+
my $neg = ($_ =~ s/^!\s*//);
|
439
|
+
#warn "neg: $neg ($_)";
|
440
|
+
if ($neg) {
|
441
|
+
$headers{$_} = undef;
|
442
|
+
} else {
|
443
|
+
my ($key, $val) = split /\s*:\s*/, $_, 2;
|
444
|
+
$headers{$key} = $val;
|
445
|
+
}
|
446
|
+
}
|
447
|
+
close $in;
|
448
|
+
return \%headers;
|
449
|
+
}
|
450
|
+
|
451
|
+
sub expand_env_in_config ($) {
|
452
|
+
my $config = shift;
|
453
|
+
|
454
|
+
if (!defined $config) {
|
455
|
+
return;
|
456
|
+
}
|
457
|
+
|
458
|
+
$config =~ s/\$(TEST_NGINX_[_A-Z0-9]+)/
|
459
|
+
if (!defined $ENV{$1}) {
|
460
|
+
bail_out "No environment $1 defined.\n";
|
461
|
+
}
|
462
|
+
$ENV{$1}/eg;
|
463
|
+
|
464
|
+
$config;
|
465
|
+
}
|
466
|
+
|
467
|
+
sub check_if_missing_directives () {
|
468
|
+
open my $in, $ErrLogFile or
|
469
|
+
bail_out "check_if_missing_directives: Cannot open $ErrLogFile for reading: $!\n";
|
470
|
+
|
471
|
+
while (<$in>) {
|
472
|
+
#warn $_;
|
473
|
+
if (/\[emerg\] \S+?: unknown directive "([^"]+)"/) {
|
474
|
+
#warn "MATCHED!!! $1";
|
475
|
+
return $1;
|
476
|
+
}
|
477
|
+
}
|
478
|
+
|
479
|
+
close $in;
|
480
|
+
|
481
|
+
#warn "NOT MATCHED!!!";
|
482
|
+
|
483
|
+
return 0;
|
484
|
+
}
|
485
|
+
|
486
|
+
sub run_test ($) {
|
487
|
+
my $block = shift;
|
488
|
+
my $name = $block->name;
|
489
|
+
|
490
|
+
my $config = $block->config;
|
491
|
+
|
492
|
+
$config = expand_env_in_config($config);
|
493
|
+
|
494
|
+
my $dry_run = 0;
|
495
|
+
my $should_restart = 1;
|
496
|
+
my $should_reconfig = 1;
|
497
|
+
|
498
|
+
if (!defined $config) {
|
499
|
+
if (!$NoNginxManager) {
|
500
|
+
# Manager without config.
|
501
|
+
if (!defined $PrevConfig) {
|
502
|
+
bail_out("$name - No '--- config' section specified and could not get previous one. Use TEST_NGINX_NO_NGINX_MANAGER ?");
|
503
|
+
die;
|
504
|
+
}
|
505
|
+
$should_reconfig = 0; # There is nothing to reconfig to.
|
506
|
+
$should_restart = $ForceRestartOnTest;
|
507
|
+
}
|
508
|
+
# else: not manager without a config. This is not a problem at all.
|
509
|
+
# setting these values to something meaningful but should not be used
|
510
|
+
$should_restart = 0;
|
511
|
+
$should_reconfig = 0;
|
512
|
+
} elsif ($NoNginxManager) {
|
513
|
+
# One config but not manager: it's worth a warning.
|
514
|
+
Test::Base::diag("NO_NGINX_MANAGER activated: config for $name ignored");
|
515
|
+
# Like above: setting them to something meaningful just in case.
|
516
|
+
$should_restart = 0;
|
517
|
+
$should_reconfig = 0;
|
518
|
+
} else {
|
519
|
+
# One config and manager. Restart only if forced to or if config
|
520
|
+
# changed.
|
521
|
+
if ((!defined $PrevConfig) || ($config ne $PrevConfig)) {
|
522
|
+
$should_reconfig = 1;
|
523
|
+
} else {
|
524
|
+
$should_reconfig = 0;
|
525
|
+
}
|
526
|
+
if ($should_reconfig || $ForceRestartOnTest) {
|
527
|
+
$should_restart = 1;
|
528
|
+
} else {
|
529
|
+
$should_restart = 0;
|
530
|
+
}
|
531
|
+
}
|
532
|
+
|
533
|
+
my $skip_nginx = $block->skip_nginx;
|
534
|
+
my $skip_nginx2 = $block->skip_nginx2;
|
535
|
+
my $skip_slave = $block->skip_slave;
|
536
|
+
my ($tests_to_skip, $should_skip, $skip_reason);
|
537
|
+
if (defined $skip_nginx) {
|
538
|
+
if ($skip_nginx =~ m{
|
539
|
+
^ \s* (\d+) \s* : \s*
|
540
|
+
([<>]=?) \s* (\d+)\.(\d+)\.(\d+)
|
541
|
+
(?: \s* : \s* (.*) )?
|
542
|
+
\s*$}x) {
|
543
|
+
$tests_to_skip = $1;
|
544
|
+
my ($op, $ver1, $ver2, $ver3) = ($2, $3, $4, $5);
|
545
|
+
$skip_reason = $6;
|
546
|
+
#warn "$ver1 $ver2 $ver3";
|
547
|
+
my $ver = get_canon_version($ver1, $ver2, $ver3);
|
548
|
+
if ((!defined $NginxVersion and $op =~ /^</)
|
549
|
+
or eval "$NginxVersion $op $ver")
|
550
|
+
{
|
551
|
+
$should_skip = 1;
|
552
|
+
}
|
553
|
+
} else {
|
554
|
+
bail_out("$name - Invalid --- skip_nginx spec: " .
|
555
|
+
$skip_nginx);
|
556
|
+
die;
|
557
|
+
}
|
558
|
+
} elsif (defined $skip_nginx2) {
|
559
|
+
if ($skip_nginx2 =~ m{
|
560
|
+
^ \s* (\d+) \s* : \s*
|
561
|
+
([<>]=?) \s* (\d+)\.(\d+)\.(\d+)
|
562
|
+
\s* (or|and) \s*
|
563
|
+
([<>]=?) \s* (\d+)\.(\d+)\.(\d+)
|
564
|
+
(?: \s* : \s* (.*) )?
|
565
|
+
\s*$}x) {
|
566
|
+
$tests_to_skip = $1;
|
567
|
+
my ($opa, $ver1a, $ver2a, $ver3a) = ($2, $3, $4, $5);
|
568
|
+
my $opx = $6;
|
569
|
+
my ($opb, $ver1b, $ver2b, $ver3b) = ($7, $8, $9, $10);
|
570
|
+
$skip_reason = $11;
|
571
|
+
my $vera = get_canon_version($ver1a, $ver2a, $ver3a);
|
572
|
+
my $verb = get_canon_version($ver1b, $ver2b, $ver3b);
|
573
|
+
|
574
|
+
if ((!defined $NginxVersion)
|
575
|
+
or (($opx eq "or") and (eval "$NginxVersion $opa $vera"
|
576
|
+
or eval "$NginxVersion $opb $verb"))
|
577
|
+
or (($opx eq "and") and (eval "$NginxVersion $opa $vera"
|
578
|
+
and eval "$NginxVersion $opb $verb")))
|
579
|
+
{
|
580
|
+
$should_skip = 1;
|
581
|
+
}
|
582
|
+
} else {
|
583
|
+
bail_out("$name - Invalid --- skip_nginx2 spec: " .
|
584
|
+
$skip_nginx2);
|
585
|
+
die;
|
586
|
+
}
|
587
|
+
} elsif (defined $skip_slave and defined $BuildSlaveName) {
|
588
|
+
if ($skip_slave =~ m{
|
589
|
+
^ \s* (\d+) \s* : \s*
|
590
|
+
(\w+) \s* (?: (\w+) \s* )? (?: (\w+) \s* )?
|
591
|
+
(?: \s* : \s* (.*) )? \s*$}x)
|
592
|
+
{
|
593
|
+
$tests_to_skip = $1;
|
594
|
+
my ($slave1, $slave2, $slave3) = ($2, $3, $4);
|
595
|
+
$skip_reason = $5;
|
596
|
+
if ((defined $slave1 and $slave1 eq "all")
|
597
|
+
or (defined $slave1 and $slave1 eq $BuildSlaveName)
|
598
|
+
or (defined $slave2 and $slave2 eq $BuildSlaveName)
|
599
|
+
or (defined $slave3 and $slave3 eq $BuildSlaveName)
|
600
|
+
)
|
601
|
+
{
|
602
|
+
$should_skip = 1;
|
603
|
+
}
|
604
|
+
} else {
|
605
|
+
bail_out("$name - Invalid --- skip_slave spec: " .
|
606
|
+
$skip_slave);
|
607
|
+
die;
|
608
|
+
}
|
609
|
+
}
|
610
|
+
|
611
|
+
if (!defined $skip_reason) {
|
612
|
+
$skip_reason = "various reasons";
|
613
|
+
}
|
614
|
+
|
615
|
+
my $todo_nginx = $block->todo_nginx;
|
616
|
+
my ($should_todo, $todo_reason);
|
617
|
+
if (defined $todo_nginx) {
|
618
|
+
if ($todo_nginx =~ m{
|
619
|
+
^ \s*
|
620
|
+
([<>]=?) \s* (\d+)\.(\d+)\.(\d+)
|
621
|
+
(?: \s* : \s* (.*) )?
|
622
|
+
\s*$}x) {
|
623
|
+
my ($op, $ver1, $ver2, $ver3) = ($1, $2, $3, $4);
|
624
|
+
$todo_reason = $5;
|
625
|
+
my $ver = get_canon_version($ver1, $ver2, $ver3);
|
626
|
+
if ((!defined $NginxVersion and $op =~ /^</)
|
627
|
+
or eval "$NginxVersion $op $ver")
|
628
|
+
{
|
629
|
+
$should_todo = 1;
|
630
|
+
}
|
631
|
+
} else {
|
632
|
+
bail_out("$name - Invalid --- todo_nginx spec: " .
|
633
|
+
$todo_nginx);
|
634
|
+
die;
|
635
|
+
}
|
636
|
+
}
|
637
|
+
|
638
|
+
if (!defined $todo_reason) {
|
639
|
+
$todo_reason = "various reasons";
|
640
|
+
}
|
641
|
+
|
642
|
+
if (!$NoNginxManager && !$should_skip && $should_restart) {
|
643
|
+
if ($should_reconfig) {
|
644
|
+
$PrevConfig = $config;
|
645
|
+
}
|
646
|
+
my $nginx_is_running = 1;
|
647
|
+
if (-f $PidFile) {
|
648
|
+
my $pid = get_pid_from_pidfile($name);
|
649
|
+
if (!defined $pid or $pid eq '') {
|
650
|
+
undef $nginx_is_running;
|
651
|
+
goto start_nginx;
|
652
|
+
}
|
653
|
+
|
654
|
+
if (system("ps $pid > /dev/null") == 0) {
|
655
|
+
#warn "found running nginx...";
|
656
|
+
write_config_file($config, $block->http_config, $block->main_config);
|
657
|
+
if (kill(SIGQUIT, $pid) == 0) { # send quit signal
|
658
|
+
#warn("$name - Failed to send quit signal to the nginx process with PID $pid");
|
659
|
+
}
|
660
|
+
sleep 0.02;
|
661
|
+
if (system("ps $pid > /dev/null") == 0) {
|
662
|
+
#warn "killing with force...\n";
|
663
|
+
kill(SIGKILL, $pid);
|
664
|
+
sleep 0.02;
|
665
|
+
}
|
666
|
+
undef $nginx_is_running;
|
667
|
+
} else {
|
668
|
+
unlink $PidFile or
|
669
|
+
die "Failed to remove pid file $PidFile\n";
|
670
|
+
undef $nginx_is_running;
|
671
|
+
}
|
672
|
+
} else {
|
673
|
+
undef $nginx_is_running;
|
674
|
+
}
|
675
|
+
|
676
|
+
start_nginx:
|
677
|
+
|
678
|
+
unless ($nginx_is_running) {
|
679
|
+
#system("killall -9 nginx");
|
680
|
+
|
681
|
+
#warn "*** Restarting the nginx server...\n";
|
682
|
+
setup_server_root();
|
683
|
+
write_user_files($block);
|
684
|
+
write_config_file($config, $block->http_config, $block->main_config);
|
685
|
+
#warn "nginx binary: $NginxBinary";
|
686
|
+
if ( ! can_run($NginxBinary) ) {
|
687
|
+
bail_out("$name - Cannot find the nginx executable in the PATH environment");
|
688
|
+
die;
|
689
|
+
}
|
690
|
+
#if (system("nginx -p $ServRoot -c $ConfFile -t") != 0) {
|
691
|
+
#Test::More::BAIL_OUT("$name - Invalid config file");
|
692
|
+
#}
|
693
|
+
#my $cmd = "nginx -p $ServRoot -c $ConfFile > /dev/null";
|
694
|
+
if (!defined $NginxVersion) {
|
695
|
+
$NginxVersion = $LatestNginxVersion;
|
696
|
+
}
|
697
|
+
|
698
|
+
my $cmd;
|
699
|
+
if ($NginxVersion >= 0.007053) {
|
700
|
+
$cmd = "$NginxBinary -p $ServRoot/ -c $ConfFile > /dev/null";
|
701
|
+
} else {
|
702
|
+
$cmd = "$NginxBinary -c $ConfFile > /dev/null";
|
703
|
+
}
|
704
|
+
|
705
|
+
if ($UseValgrind) {
|
706
|
+
if (-f 'valgrind.suppress') {
|
707
|
+
$cmd = "valgrind -q --leak-check=full --gen-suppressions=all --suppressions=valgrind.suppress $cmd";
|
708
|
+
} else {
|
709
|
+
$cmd = "valgrind -q --leak-check=full --gen-suppressions=all $cmd";
|
710
|
+
}
|
711
|
+
|
712
|
+
warn "$name\n";
|
713
|
+
#warn "$cmd\n";
|
714
|
+
}
|
715
|
+
|
716
|
+
if ($Profiling || $UseValgrind) {
|
717
|
+
my $pid = $ForkManager->start;
|
718
|
+
if (!$pid) {
|
719
|
+
# child process
|
720
|
+
exec $cmd;
|
721
|
+
|
722
|
+
=begin cmt
|
723
|
+
|
724
|
+
if (system($cmd) != 0) {
|
725
|
+
Test::More::BAIL_OUT("$name - Cannot start nginx using command \"$cmd\".");
|
726
|
+
}
|
727
|
+
|
728
|
+
$ForkManager->finish; # terminate the child process
|
729
|
+
|
730
|
+
=end cmt
|
731
|
+
|
732
|
+
=cut
|
733
|
+
|
734
|
+
}
|
735
|
+
#warn "sleeping";
|
736
|
+
if ($TestNginxSleep) {
|
737
|
+
sleep $TestNginxSleep;
|
738
|
+
} else {
|
739
|
+
sleep 1;
|
740
|
+
}
|
741
|
+
} else {
|
742
|
+
if (system($cmd) != 0) {
|
743
|
+
if ($ENV{TEST_NGINX_IGNORE_MISSING_DIRECTIVES} and
|
744
|
+
my $directive = check_if_missing_directives())
|
745
|
+
{
|
746
|
+
$dry_run = $directive;
|
747
|
+
|
748
|
+
} else {
|
749
|
+
bail_out("$name - Cannot start nginx using command \"$cmd\".");
|
750
|
+
}
|
751
|
+
}
|
752
|
+
}
|
753
|
+
|
754
|
+
sleep 0.1;
|
755
|
+
}
|
756
|
+
}
|
757
|
+
|
758
|
+
if ($block->init) {
|
759
|
+
eval $block->init;
|
760
|
+
if ($@) {
|
761
|
+
bail_out("$name - init failed: $@");
|
762
|
+
}
|
763
|
+
}
|
764
|
+
|
765
|
+
my $i = 0;
|
766
|
+
while ($i++ < $RepeatEach) {
|
767
|
+
if ($should_skip) {
|
768
|
+
SKIP: {
|
769
|
+
Test::More::skip("$name - $skip_reason", $tests_to_skip);
|
770
|
+
|
771
|
+
$RunTestHelper->($block, $dry_run);
|
772
|
+
}
|
773
|
+
} elsif ($should_todo) {
|
774
|
+
TODO: {
|
775
|
+
local $TODO = "$name - $todo_reason";
|
776
|
+
|
777
|
+
$RunTestHelper->($block, $dry_run);
|
778
|
+
}
|
779
|
+
} else {
|
780
|
+
$RunTestHelper->($block, $dry_run);
|
781
|
+
}
|
782
|
+
}
|
783
|
+
|
784
|
+
if (my $total_errlog = $ENV{TEST_NGINX_ERROR_LOG}) {
|
785
|
+
my $errlog = "$LogDir/error.log";
|
786
|
+
if (-s $errlog) {
|
787
|
+
open my $out, ">>$total_errlog" or
|
788
|
+
die "Failed to append test case title to $total_errlog: $!\n";
|
789
|
+
print $out "\n=== $0 $name\n";
|
790
|
+
close $out;
|
791
|
+
system("cat $errlog >> $total_errlog") == 0 or
|
792
|
+
die "Failed to append $errlog to $total_errlog. Abort.\n";
|
793
|
+
}
|
794
|
+
}
|
795
|
+
|
796
|
+
if ($Profiling || $UseValgrind) {
|
797
|
+
#warn "Found quit...";
|
798
|
+
if (-f $PidFile) {
|
799
|
+
#warn "found pid file...";
|
800
|
+
my $pid = get_pid_from_pidfile($name);
|
801
|
+
if (system("ps $pid > /dev/null") == 0) {
|
802
|
+
write_config_file($config, $block->http_config, $block->main_config);
|
803
|
+
if (kill(SIGQUIT, $pid) == 0) { # send quit signal
|
804
|
+
warn("$name - Failed to send quit signal to the nginx process with PID $pid");
|
805
|
+
}
|
806
|
+
if ($TestNginxSleep) {
|
807
|
+
sleep $TestNginxSleep;
|
808
|
+
} else {
|
809
|
+
sleep 0.1;
|
810
|
+
}
|
811
|
+
if (-f $PidFile) {
|
812
|
+
#warn "killing with force (valgrind or profile)...\n";
|
813
|
+
kill(SIGKILL, $pid);
|
814
|
+
sleep 0.02;
|
815
|
+
} else {
|
816
|
+
#warn "nginx killed";
|
817
|
+
}
|
818
|
+
} else {
|
819
|
+
unlink $PidFile or
|
820
|
+
die "Failed to remove pid file $PidFile\n";
|
821
|
+
}
|
822
|
+
} else {
|
823
|
+
#warn "pid file not found";
|
824
|
+
}
|
825
|
+
}
|
826
|
+
}
|
827
|
+
|
828
|
+
END {
|
829
|
+
if ($UseValgrind || !$ENV{TEST_NGINX_NO_CLEAN}) {
|
830
|
+
local $?; # to avoid confusing Test::Builder::_ending
|
831
|
+
if (-f $PidFile) {
|
832
|
+
my $pid = get_pid_from_pidfile('');
|
833
|
+
if (!$pid) {
|
834
|
+
die "No pid found.";
|
835
|
+
}
|
836
|
+
if (system("ps $pid > /dev/null") == 0) {
|
837
|
+
if (kill(SIGQUIT, $pid) == 0) { # send quit signal
|
838
|
+
#warn("Failed to send quit signal to the nginx process with PID $pid");
|
839
|
+
}
|
840
|
+
if ($TestNginxSleep) {
|
841
|
+
sleep $TestNginxSleep;
|
842
|
+
} else {
|
843
|
+
sleep 0.02;
|
844
|
+
}
|
845
|
+
if (system("ps $pid > /dev/null") == 0) {
|
846
|
+
#warn "killing with force...\n";
|
847
|
+
kill(SIGKILL, $pid);
|
848
|
+
sleep 0.02;
|
849
|
+
}
|
850
|
+
} else {
|
851
|
+
unlink $PidFile;
|
852
|
+
}
|
853
|
+
}
|
854
|
+
}
|
855
|
+
}
|
856
|
+
|
857
|
+
# check if we can run some command
|
858
|
+
sub can_run {
|
859
|
+
my ($cmd) = @_;
|
860
|
+
|
861
|
+
#warn "can run: @_\n";
|
862
|
+
my $_cmd = $cmd;
|
863
|
+
return $_cmd if (-x $_cmd or $_cmd = MM->maybe_command($_cmd));
|
864
|
+
|
865
|
+
for my $dir ((split /$Config::Config{path_sep}/, $ENV{PATH}), '.') {
|
866
|
+
next if $dir eq '';
|
867
|
+
my $abs = File::Spec->catfile($dir, $_[0]);
|
868
|
+
return $abs if (-x $abs or $abs = MM->maybe_command($abs));
|
869
|
+
}
|
870
|
+
|
871
|
+
return;
|
872
|
+
}
|
873
|
+
|
874
|
+
1;
|