diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-06-13 14:45:17 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-06-13 14:45:17 +0100 |
commit | 378a1f21a399b364b8f7a8651adfdb4a5ede8973 (patch) | |
tree | 07f2088e489a841d1fa1a66925b55942acfd1b46 /test/functional/configs | |
parent | d133232f34ca0170c5104b7374bd633bfc0b1051 (diff) | |
download | rspamd-378a1f21a399b364b8f7a8651adfdb4a5ede8973.tar.gz rspamd-378a1f21a399b364b8f7a8651adfdb4a5ede8973.zip |
[Test] Fix config
Diffstat (limited to 'test/functional/configs')
-rw-r--r-- | test/functional/configs/nginx.conf | 5 |
1 files 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; } } |