]> source.dussan.org Git - rspamd.git/commitdiff
[Test] Fix config
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 13 Jun 2018 13:45:17 +0000 (14:45 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 13 Jun 2018 13:45:17 +0000 (14:45 +0100)
test/functional/configs/nginx.conf

index e36d6c246ee488b58b8a38b4911ec84c93d16c65..72472d16e04528603ff6c876ce49becda321bce1 100644 (file)
@@ -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;
         }
     }