comparison proxy_ssi_body.t @ 952:e9064d691790

Tests: converted tests to run in parallel.
author Andrey Zelenkov <zelenkov@nginx.com>
date Tue, 21 Jun 2016 16:39:13 +0300
parents 8dd5cf697eae
children 882267679006
comparison
equal deleted inserted replaced
951:9361c7eddfc1 952:e9064d691790
37 37
38 http { 38 http {
39 %%TEST_GLOBALS_HTTP%% 39 %%TEST_GLOBALS_HTTP%%
40 40
41 server { 41 server {
42 listen 127.0.0.1:8080; 42 listen 127.0.0.1:%%PORT_0%%;
43 server_name localhost; 43 server_name localhost;
44 44
45 location / { 45 location / {
46 } 46 }
47 47
48 location /proxy { 48 location /proxy {
49 proxy_pass http://127.0.0.1:8080/; 49 proxy_pass http://127.0.0.1:%%PORT_0%%/;
50 client_body_in_file_only on; 50 client_body_in_file_only on;
51 ssi on; 51 ssi on;
52 } 52 }
53 } 53 }
54 } 54 }