diff fastcgi.t @ 35:7bf0e8a1d66c

Tests: always define temp paths. This is required since nginx tries to create them at startup (and fails if it can't).
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 16 Oct 2008 19:16:46 +0400
parents baf9c51d166c
children bd1a5e92d0c0
line wrap: on
line diff
--- a/fastcgi.t
+++ b/fastcgi.t
@@ -39,6 +39,10 @@ events {
 http {
     access_log    off;
 
+    client_body_temp_path  %%TESTDIR%%/client_body_temp;
+    fastcgi_temp_path      %%TESTDIR%%/fastcgi_temp;
+    proxy_temp_path        %%TESTDIR%%/proxy_temp;
+
     server {
         listen       localhost:8080;
         server_name  localhost;