view auto/install @ 346:05693816539c NGINX_0_6_17

nginx 0.6.17 *) Feature: the "If-Range" request header line support. Thanks to Alexander V. Inyukhin. *) Bugfix: URL double escaping in a redirect of the "msie_refresh" directive; bug appeared in 0.6.4. *) Bugfix: the "autoindex" directive did not work with the "alias /" directive. *) Bugfix: a segmentation fault might occur in worker process if subrequests were used. *) Bugfix: the big responses may be transferred truncated if SSL and gzip were used. *) Bugfix: the $status variable was equal to 0 if a proxied server returned response in HTTP/0.9 version.
author Igor Sysoev <http://sysoev.ru>
date Thu, 15 Nov 2007 00:00:00 +0300
parents 9fc4ab6673f9
children d13234035cad
line wrap: on
line source


# Copyright (C) Igor Sysoev


if [ $USE_PERL = YES ]; then

    cat << END                                                >> $NGX_MAKEFILE

install_perl_modules:
	cd $NGX_OBJS/src/http/modules/perl && make install
END

    NGX_INSTALL_PERL_MODULES=install_perl_modules

fi


cat << END                                                    >> $NGX_MAKEFILE

install:	$NGX_OBJS${ngx_dirsep}nginx${ngx_binext}	\
		$NGX_INSTALL_PERL_MODULES
	test -d '$NGX_PREFIX' || mkdir -p '$NGX_PREFIX'

	test -d '`dirname "$NGX_SBIN_PATH"`' \
		|| mkdir -p '`dirname "$NGX_SBIN_PATH"`'
	test ! -f '$NGX_SBIN_PATH' || mv '$NGX_SBIN_PATH' '$NGX_SBIN_PATH.old'
	cp $NGX_OBJS/nginx '$NGX_SBIN_PATH'

	test -d '$NGX_CONF_PREFIX' || mkdir -p '$NGX_CONF_PREFIX'

	cp conf/koi-win '$NGX_CONF_PREFIX'
	cp conf/koi-utf '$NGX_CONF_PREFIX'
	cp conf/win-utf '$NGX_CONF_PREFIX'

	test -f '$NGX_CONF_PREFIX/mime.types' \
		|| cp conf/mime.types '$NGX_CONF_PREFIX'
	cp conf/mime.types '$NGX_CONF_PREFIX/mime.types.default'

	test -f '$NGX_CONF_PREFIX/fastcgi_params' \
		|| cp conf/fastcgi_params '$NGX_CONF_PREFIX'
	cp conf/fastcgi_params '$NGX_CONF_PREFIX/fastcgi_params.default'

	test -f '$NGX_CONF_PATH' || cp conf/nginx.conf '$NGX_CONF_PREFIX'
	cp conf/nginx.conf '$NGX_CONF_PREFIX/nginx.conf.default'

	test -d '`dirname "$NGX_PID_PATH"`' \
		|| mkdir -p '`dirname "$NGX_PID_PATH"`'

	test -d '`dirname "$NGX_HTTP_LOG_PATH"`' || \
		mkdir -p '`dirname "$NGX_HTTP_LOG_PATH"`'

	test -d '$NGX_PREFIX/html' || cp -r html '$NGX_PREFIX'
END


if test -n "$NGX_ERROR_LOG_PATH"; then
    cat << END                                                >> $NGX_MAKEFILE

	test -d '`dirname "$NGX_ERROR_LOG_PATH"`' || \
		mkdir -p '`dirname "$NGX_ERROR_LOG_PATH"`'
END

fi