comparison auto/summary @ 3557:77188d729402

print default module temporary directory path in summary only if the module is enabled
author Igor Sysoev <igor@sysoev.ru>
date Tue, 01 Jun 2010 20:32:32 +0000
parents 0b3613117ac5
children d656caa72ec9
comparison
equal deleted inserted replaced
3556:b9415935d95d 3557:77188d729402
95 fi 95 fi
96 96
97 cat << END 97 cat << END
98 nginx http access log file: "$NGX_HTTP_LOG_PATH" 98 nginx http access log file: "$NGX_HTTP_LOG_PATH"
99 nginx http client request body temporary files: "$NGX_HTTP_CLIENT_TEMP_PATH" 99 nginx http client request body temporary files: "$NGX_HTTP_CLIENT_TEMP_PATH"
100 nginx http proxy temporary files: "$NGX_HTTP_PROXY_TEMP_PATH" 100 END
101 nginx http fastcgi temporary files: "$NGX_HTTP_FASTCGI_TEMP_PATH"
102 nginx http uwsgi temporary files: "$NGX_HTTP_UWSGI_TEMP_PATH"
103 101
104 END 102 if [ $HTTP_PROXY = YES ]; then
103 echo " nginx http proxy temporary files: \"$NGX_HTTP_PROXY_TEMP_PATH\""
104 fi
105
106 if [ $HTTP_FASTCGI = YES ]; then
107 echo " nginx http fastcgi temporary files: \"$NGX_HTTP_FASTCGI_TEMP_PATH\""
108 fi
109
110 if [ $HTTP_UWSGI = YES ]; then
111 echo " nginx http uwsgi temporary files: \"$NGX_HTTP_UWSGI_TEMP_PATH\""
112 fi
113