mirror of
https://github.com/nginx/nginx.git
synced 2024-11-24 21:59:06 +08:00
ef809b86c3
*) Change: the "proxy_redirect_errors" and "fastcgi_redirect_errors" directives was renamed to the "proxy_intercept_errors" and "fastcgi_intercept_errors" directives. *) Feature: the ngx_http_charset_module supports the recoding from the single byte encodings to the UTF-8 encoding and back. *) Feature: the "X-Accel-Charset" response header line is supported in proxy and FastCGI mode. *) Bugfix: the "\" escape symbol in the "\"" and "\'" pairs in the SSI command was removed only if the command also has the "$" symbol. *) Bugfix: the "<!--" string might be added on some conditions in the SSI after inclusion. *) Bugfix: if the "Content-Length: 0" header line was in response, then in nonbuffered proxying mode the client connection was not closed.
61 lines
1.6 KiB
Plaintext
61 lines
1.6 KiB
Plaintext
|
|
# 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 '`dirname "$NGX_CONF_PATH"`' \
|
|
|| mkdir -p '`dirname "$NGX_CONF_PATH"`'
|
|
|
|
cp conf/koi-win '`dirname "$NGX_CONF_PATH"`'
|
|
cp conf/koi-utf '`dirname "$NGX_CONF_PATH"`'
|
|
cp conf/win-utf '`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
|