tests: nginx: Allow POSTs in static files

By default Nginx does not allow POST in static files, which is very
used by the regression test. This is a ugly hack just to make possible
to gather some numbers. Better solution will arrive soon.
This commit is contained in:
Felipe Zimmerle
2014-01-06 19:22:27 -08:00
parent e20c800044
commit 176396ddc1

View File

@@ -15,6 +15,7 @@ http {
listen [% listen %]; listen [% listen %];
server_name localhost; server_name localhost;
location / { location / {
error_page 405 = $uri;
} }
} }
} }