comparison auto/os/conf @ 26:45fe5b98a9de NGINX_0_1_13

nginx 0.1.13 *) Feature: the server_names_hash and server_names_hash_threshold directives. *) Bugfix: the *.domain.tld names in the "server_name" directive did not work. *) Bugfix: the %request_length log parameter logged the incorrect length.
author Igor Sysoev <http://sysoev.ru>
date Tue, 21 Dec 2004 00:00:00 +0300
parents 8b6db3bda591
children 7ca9bdc82b3f
comparison
equal deleted inserted replaced
25:21488c53e135 26:45fe5b98a9de
43 esac 43 esac
44 44
45 45
46 if [ $NGX_PLATFORM != win32 ]; then 46 if [ $NGX_PLATFORM != win32 ]; then
47 47
48 if test -z "$NGX_USER"; then 48 NGX_USER=${NGX_USER:-nobody}
49 NGX_USER=nobody
50 fi
51 49
52 if [ -z "$NGX_GROUP" -a $NGX_USER = nobody ] ; then 50 if [ -z "$NGX_GROUP" -a $NGX_USER = nobody ] ; then
53 if grep nobody /etc/group 2>&1 >/dev/null; then 51 if grep nobody /etc/group 2>&1 >/dev/null; then
54 echo "checking for nobody group ... found" 52 echo "checking for nobody group ... found"
55 NGX_GROUP=nobody 53 NGX_GROUP=nobody