|
|
|
@ -33,6 +33,8 @@ var_append confopt ' ' "--lock-path=$localstatedir/lock/nginx.lock"
|
|
|
|
|
var_append confopt ' ' "--http-proxy-temp-path=$localstatedir/temp/proxy_temp" |
|
|
|
|
# set path to the http fastcgi temporary |
|
|
|
|
var_append confopt ' ' "--http-fastcgi-temp-path=$localstatedir/temp/fastcgi_temp" |
|
|
|
|
# set path to the http uwsgi temporary |
|
|
|
|
var_append confopt ' ' "--http-uwsgi-temp-path=$localstatedir/temp/uwsgi_temp" |
|
|
|
|
# set path to the http client request body |
|
|
|
|
var_append confopt ' ' "--http-client-body-temp-path=$localstatedir/temp/client_body_temp" |
|
|
|
|
|
|
|
|
@ -70,3 +72,10 @@ if atstage cross; then
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
var_append CC_WRAPPER_REMOVE " " "-Werror" |
|
|
|
|
|
|
|
|
|
uwsgi_hack() { |
|
|
|
|
cp -va conf/uwsgi_params $sysconfdir/uwsgi_params |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
hook_add postmake 5 "uwsgi_hack" |
|
|
|
|
|
|
|
|
|