comparison auto/modules @ 6103:79ddb0bdb273

Upstream: the "zone" directive. Upstreams with the "zone" directive are kept in shared memory, with a consistent view of all worker processes.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 14 Apr 2015 19:01:25 +0300
parents 466bd63b63d1
children 61d7ae76647d
comparison
equal deleted inserted replaced
6102:3264b7828f72 6103:79ddb0bdb273
389 if [ $HTTP_UPSTREAM_KEEPALIVE = YES ]; then 389 if [ $HTTP_UPSTREAM_KEEPALIVE = YES ]; then
390 HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_KEEPALIVE_MODULE" 390 HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_KEEPALIVE_MODULE"
391 HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_KEEPALIVE_SRCS" 391 HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_KEEPALIVE_SRCS"
392 fi 392 fi
393 393
394 if [ $HTTP_UPSTREAM_ZONE = YES ]; then
395 have=NGX_HTTP_UPSTREAM_ZONE . auto/have
396 HTTP_MODULES="$HTTP_MODULES $HTTP_UPSTREAM_ZONE_MODULE"
397 HTTP_SRCS="$HTTP_SRCS $HTTP_UPSTREAM_ZONE_SRCS"
398 fi
399
394 if [ $HTTP_STUB_STATUS = YES ]; then 400 if [ $HTTP_STUB_STATUS = YES ]; then
395 have=NGX_STAT_STUB . auto/have 401 have=NGX_STAT_STUB . auto/have
396 HTTP_MODULES="$HTTP_MODULES ngx_http_stub_status_module" 402 HTTP_MODULES="$HTTP_MODULES ngx_http_stub_status_module"
397 HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c" 403 HTTP_SRCS="$HTTP_SRCS src/http/modules/ngx_http_stub_status_module.c"
398 fi 404 fi