From: Vsevolod Stakhov Date: Wed, 13 Jun 2018 13:45:17 +0000 (+0100) Subject: [Test] Fix config X-Git-Tag: 1.7.6~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=378a1f21a399b364b8f7a8651adfdb4a5ede8973;p=thirdparty%2Frspamd.git [Test] Fix config --- diff --git a/test/functional/configs/nginx.conf b/test/functional/configs/nginx.conf index e36d6c246e..72472d16e0 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; } }