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; } }