comparison auto/os/conf @ 477:ad1e9ebf93bb release-0.1.13

nginx-0.1.13-RELEASE import *) 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 <igor@sysoev.ru>
date Tue, 21 Dec 2004 12:30:30 +0000
parents 8e8f3af115b5
children c52408583801
comparison
equal deleted inserted replaced
476:7e8b84ab09e9 477:ad1e9ebf93bb
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