From 378a1f21a399b364b8f7a8651adfdb4a5ede8973 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 13 Jun 2018 14:45:17 +0100 Subject: [PATCH] [Test] Fix config --- test/functional/configs/nginx.conf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/functional/configs/nginx.conf b/test/functional/configs/nginx.conf index e36d6c246..72472d16e 100644 --- a/test/functional/configs/nginx.conf +++ b/test/functional/configs/nginx.conf @@ -4,17 +4,16 @@ worker_processes 1; pid ${TMPDIR}/nginx.pid; error_log ${TMPDIR}/error.log; http { - include mime.types; default_type application/octet-stream; sendfile on; server { # no need for root privileges listen ${NGINX_ADDR}:${NGINX_PORT}; - server_name localhost + server_name localhost; location / { - root ${TMPDIR} + root ${TMPDIR}; autoindex on; } } -- 2.39.5