comparison auto/os/features @ 256:2e9c57a5e50a NGINX_0_4_13

nginx 0.4.13 *) Feature: the "proxy_pass" directive may be used inside the "limit_except" block. *) Feature: the "limit_except" directive supports all WebDAV methods. *) Bugfix: if the "add_before_body" directive was used without the "add_after_body" directive, then an response did not transferred complete. *) Bugfix: a large request body did not receive if the epoll method and the deferred accept() were used. *) Bugfix: a charset could not be set for ngx_http_autoindex_module responses; bug appeared in 0.3.50. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was used; *) Bugfix: the --group= configuration parameter was ignored. Thanks to Thomas Moschny. *) Bugfix: the 50th subrequest in SSI response did not work; bug appeared in 0.3.50.
author Igor Sysoev <http://sysoev.ru>
date Wed, 15 Nov 2006 00:00:00 +0300
parents 1b490fc19afa
children 6ae1357b7b7c
comparison
equal deleted inserted replaced
255:a13bad126e69 256:2e9c57a5e50a
2 # Copyright (C) Igor Sysoev 2 # Copyright (C) Igor Sysoev
3 3
4 4
5 NGX_USER=${NGX_USER:-nobody} 5 NGX_USER=${NGX_USER:-nobody}
6 6
7 if [ -z "$NGX_GROUP" -a $NGX_USER = nobody ] ; then 7 if [ -z "$NGX_GROUP" ]; then
8 if grep nobody /etc/group 2>&1 >/dev/null; then 8 if [ $NGX_USER = nobody ]; then
9 echo "checking for nobody group ... found" 9 if grep nobody /etc/group 2>&1 >/dev/null; then
10 NGX_GROUP=nobody 10 echo "checking for nobody group ... found"
11 NGX_GROUP=nobody
12 else
13 echo "checking for nobody group ... not found"
14
15 if grep nogroup /etc/group 2>&1 >/dev/null; then
16 echo "checking for nogroup group ... found"
17 NGX_GROUP=nogroup
18 else
19 echo "checking for nogroup group ... not found"
20 NGX_GROUP=nobody
21 fi
22 fi
11 else 23 else
12 echo "checking for nobody group ... not found" 24 NGX_GROUP=$NGX_USER
13
14 if grep nogroup /etc/group 2>&1 >/dev/null; then
15 echo "checking for nogroup group ... found"
16 NGX_GROUP=nogroup
17 else
18 echo "checking for nogroup group ... not found"
19 NGX_GROUP=nobody
20 fi
21 fi 25 fi
22
23 else
24 NGX_GROUP=$NGX_USER
25 fi 26 fi
26 27
27 28
28 ngx_feature="poll()" 29 ngx_feature="poll()"
29 ngx_feature_name= 30 ngx_feature_name=