comparison auto/os/conf @ 28:7ca9bdc82b3f NGINX_0_1_14

nginx 0.1.14 *) Feature: the autoconfiguration directives: --http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and --http-fastcgi-temp-path=PATH *) Change: the directory name for the temporary files with the client request body is specified by directive client_body_temp_path, by default it is <prefix>/client_body_temp. *) Feature: the ngx_http_fastcgi_module and the directives: fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params, fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout, fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers, fastcgi_busy_buffers_size, fastcgi_temp_path, fastcgi_max_temp_file_size, fastcgi_temp_file_write_size, fastcgi_next_upstream, and fastcgi_x_powered_by. *) Bugfix: the "[alert] zero size buf" error; bug appeared in 0.1.3. *) Change: the URI must be specified after the host name in the proxy_pass directive. *) Change: the %3F symbol in the URI was considered as the argument string start. *) Feature: the unix domain sockets support in the ngx_http_proxy_module. *) Feature: the ssl_engine and ssl_ciphers directives. Thanks to Sergey Skvortsov for SSL-accelerator.
author Igor Sysoev <http://sysoev.ru>
date Tue, 18 Jan 2005 00:00:00 +0300
parents 45fe5b98a9de
children 2879cd3a40cb
comparison
equal deleted inserted replaced
27:66901c2556fd 28:7ca9bdc82b3f
3 3
4 4
5 if test -z "$NGX_PLATFORM"; then 5 if test -z "$NGX_PLATFORM"; then
6 echo "checking for OS" 6 echo "checking for OS"
7 7
8 SYSTEM=`uname -s 2>/dev/null` 8 NGX_SYSTEM=`uname -s 2>/dev/null`
9 RELEASE=`uname -r 2>/dev/null` 9 NGX_RELEASE=`uname -r 2>/dev/null`
10 MACHINE=`uname -m 2>/dev/null` 10 NGX_MACHINE=`uname -m 2>/dev/null`
11 11
12 echo " + $SYSTEM $RELEASE $MACHINE" 12 echo " + $NGX_SYSTEM $NGX_RELEASE $NGX_MACHINE"
13 13
14 NGX_PLATFORM="$SYSTEM:$RELEASE:$MACHINE"; 14 NGX_PLATFORM="$NGX_SYSTEM:$NGX_RELEASE:$NGX_MACHINE";
15 else 15 else
16 echo "building for $NGX_PLATFORM" 16 echo "building for $NGX_PLATFORM"
17 fi 17 fi
18 18
19 case $NGX_PLATFORM in 19 case $NGX_PLATFORM in
37 *) 37 *)
38 CORE_INCS="$UNIX_INCS" 38 CORE_INCS="$UNIX_INCS"
39 CORE_DEPS="$UNIX_DEPS $POSIX_DEPS" 39 CORE_DEPS="$UNIX_DEPS $POSIX_DEPS"
40 CORE_SRCS="$UNIX_SRCS" 40 CORE_SRCS="$UNIX_SRCS"
41 ;; 41 ;;
42
43 esac
44
45
46 case $NGX_MACHINE in
47
48 i386|i686|i86pc|amd64)
49 have=NGX_HAVE_NONALIGNED . auto/have
50 ;;
42 51
43 esac 52 esac
44 53
45 54
46 if [ $NGX_PLATFORM != win32 ]; then 55 if [ $NGX_PLATFORM != win32 ]; then