view auto/install @ 483:621229427cba release-0.1.16

nginx-0.1.16-RELEASE import *) Bugfix: if the response were transferred by chunks, then on the HEAD request the final chunk was issued. *) Bugfix: the "Connection: keep-alive" header were issued, even if the keepalive_timeout directive forbade the keep-alive use. *) Bugfix: the errors in the ngx_http_fastcgi_module caused the segmentation faults. *) Bugfix: the compressed response encrypted by SSL may not transferred complete. *) Bugfix: the TCP-specific TCP_NODELAY, TCP_NOPSUH, and TCP_CORK options, are not used for the unix domain sockets. *) Feature: the rewrite directive supports the arguments rewriting. *) Bugfix: the response code 400 was returned for the POST request with the "Content-Length: 0" header; the bug had appeared in 0.1.14.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 25 Jan 2005 12:27:35 +0000
parents 2ff194b74f1e
children 975f62e77f02
line wrap: on
line source


# Copyright (C) Igor Sysoev


cat << END                                                    >> $NGX_MAKEFILE

install:
	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 `dirname $NGX_CONF_PATH` || mkdir -p `dirname $NGX_CONF_PATH`

	cp conf/koi-win `dirname $NGX_CONF_PATH`

	test -f `dirname $NGX_CONF_PATH`/mime.types || \
		cp conf/mime.types `dirname $NGX_CONF_PATH`/mime.types
	cp conf/mime.types `dirname $NGX_CONF_PATH`/mime.types.default

	test -f $NGX_CONF_PATH || cp conf/nginx.conf $NGX_CONF_PATH
	cp conf/nginx.conf `dirname $NGX_CONF_PATH`/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