Changes with nginx 0.8.43 30 Jun
2010
*) Feature: large geo ranges base loading speed-up.
*) Bugfix: an error_page redirection to "location /zero { return
204;
}" without changing status code kept the error body; the bug had
appeared in 0.8.42.
*) Bugfix: nginx might close IPv6 listen socket during
reconfiguration.
Thanks to Maxim D..
*) Bugfix: the $uid_set variable may be used at any request
processing
stage.
–
Igor S.
http://sysoev.ru/en/
Igor S.,I’ve noticed that you add scgi support since 0.8.42 and it’s
ok.But why not put scgi_tmp & uwscgi_tmp under temp as default rule like
fastcgi_temp,proxy_temp & client_body_temp ?
I’ve found some people report at
Error in nginx-0.8.42: : mkdir() "/usr/local/nginx/uwsgi_temp" failed - NGINX - Ruby-Forum and I think it’s more prefect
if you set temp/scgi_temp(also temp/uwscgi_temp) as dafault.
Hi,
Igor S.,I’ve noticed that you add scgi support since 0.8.42 and it’s
ok.But why not put scgi_tmp & uwscgi_tmp under temp as default rule like
fastcgi_temp,proxy_temp & client_body_temp ?
I’ve found some people report at
Error in nginx-0.8.42: : mkdir() "/usr/local/nginx/uwsgi_temp" failed - NGINX - Ruby-Forum and I think it’s more prefect
if you set temp/scgi_temp(also temp/uwscgi_temp) as dafault.
Did you even read that thread to the end?
If you’re having problems with nginx port or package
then you should contact its maintainer, not Igor.
Best regards,
Piotr S. < [email protected] >
you can set it in the general configuration of the server …
http {
…
scgi_temp_path temp/scgi_temp;
uwsgi_temp_path temp/uwsgi_temp;
}
tested on windows and works …
didn’t test on any other platform
Vladan
Posted at Nginx Forum:
Many thanks!also thanks to Piotr S. & Igor S…
[email protected] wrote:
you can set it in the general configuration of the server …
http {
…
scgi_temp_path temp/scgi_temp;
uwsgi_temp_path temp/uwsgi_temp;
}
tested on windows and works …
didn’t test on any other platform
Vladan
Posted at Nginx Forum:
Re: nginx-0.8.43