comparison ssi-include-big.conf @ 5:4d75bdb05ecf

Tests: some generic code and ssi tests. Move generic code to _common.pm and add test for ssi big includes.
author Maxim Dounin <mdounin@mdounin.ru>
date Sun, 07 Sep 2008 05:00:28 +0400
parents
children f6bb0ffdb9b4
comparison
equal deleted inserted replaced
4:6c41dbb2954f 5:4d75bdb05ecf
1 # Config for ssi-include-big.t test.
2
3 worker_processes 1;
4
5 master_process off;
6 daemon off;
7
8 events {
9 worker_connections 1024;
10 }
11
12 http {
13 access_log off;
14 root %%TESTDIR%%;
15
16 output_buffers 2 512;
17 ssi on;
18 gzip on;
19 gzip_http_version 1.0;
20
21
22 server {
23 listen 8080;
24 server_name localhost;
25
26 location /proxy/ {
27 proxy_pass http://localhost:8080/local/;
28 }
29 location = /local/blah {
30 return 204;
31 }
32 }
33 }