view config @ 3:4d9427b61191

Require postpone filter to be configured.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 21 Jul 2008 05:16:44 +0400
parents ba5471a3c988
children
line wrap: on
line source

# (C) Maxim Dounin
# Configuration for ngx_http_compose_filter_module.

ngx_addon_name="ngx_http_compose_filter_module"

if [ $HTTP_POSTPONE != YES ]; then
    echo "$0: error: $ngx_addon_name requires postpone filter"
    echo "  either configure with ssi or with addition modules"
    exit 1
fi

HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES \
		ngx_http_compose_filter_module"

HTTP_RANGE_BODY_FILTER_MODULE="$HTTP_RANGE_BODY_FILTER_MODULE \
		ngx_http_compose_body_filter_module"

NGX_ADDON_SRCS="$NGX_ADDON_SRCS \
		$ngx_addon_dir/ngx_http_compose_filter_module.c"