comparison proxy-noclose.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 71ea39729fa0
children daa295331acd
comparison
equal deleted inserted replaced
34:689174c36e94 35:7bf0e8a1d66c
44 } 44 }
45 45
46 http { 46 http {
47 access_log off; 47 access_log off;
48 root %%TESTDIR%%; 48 root %%TESTDIR%%;
49
50 client_body_temp_path %%TESTDIR%%/client_body_temp;
51 fastcgi_temp_path %%TESTDIR%%/fastcgi_temp;
52 proxy_temp_path %%TESTDIR%%/proxy_temp;
49 53
50 server { 54 server {
51 listen localhost:8080; 55 listen localhost:8080;
52 server_name localhost; 56 server_name localhost;
53 57