mirror of
https://github.com/nginx/nginx.git
synced 2024-11-21 16:28:40 +00:00
print default module temporary directory path in summary
only if the module is enabled
This commit is contained in:
parent
7a3edc0171
commit
b163e95f0b
17
auto/summary
17
auto/summary
@ -97,8 +97,17 @@ fi
|
|||||||
cat << END
|
cat << END
|
||||||
nginx http access log file: "$NGX_HTTP_LOG_PATH"
|
nginx http access log file: "$NGX_HTTP_LOG_PATH"
|
||||||
nginx http client request body temporary files: "$NGX_HTTP_CLIENT_TEMP_PATH"
|
nginx http client request body temporary files: "$NGX_HTTP_CLIENT_TEMP_PATH"
|
||||||
nginx http proxy temporary files: "$NGX_HTTP_PROXY_TEMP_PATH"
|
|
||||||
nginx http fastcgi temporary files: "$NGX_HTTP_FASTCGI_TEMP_PATH"
|
|
||||||
nginx http uwsgi temporary files: "$NGX_HTTP_UWSGI_TEMP_PATH"
|
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
||||||
|
if [ $HTTP_PROXY = YES ]; then
|
||||||
|
echo " nginx http proxy temporary files: \"$NGX_HTTP_PROXY_TEMP_PATH\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $HTTP_FASTCGI = YES ]; then
|
||||||
|
echo " nginx http fastcgi temporary files: \"$NGX_HTTP_FASTCGI_TEMP_PATH\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $HTTP_UWSGI = YES ]; then
|
||||||
|
echo " nginx http uwsgi temporary files: \"$NGX_HTTP_UWSGI_TEMP_PATH\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user