comparison 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
comparison
equal deleted inserted replaced
34:689174c36e94 35:7bf0e8a1d66c
36 worker_connections 1024; 36 worker_connections 1024;
37 } 37 }
38 38
39 http { 39 http {
40 access_log off; 40 access_log off;
41
42 client_body_temp_path %%TESTDIR%%/client_body_temp;
43 fastcgi_temp_path %%TESTDIR%%/fastcgi_temp;
44 proxy_temp_path %%TESTDIR%%/proxy_temp;
41 45
42 server { 46 server {
43 listen localhost:8080; 47 listen localhost:8080;
44 server_name localhost; 48 server_name localhost;
45 49