[Test] Fix config

这个提交包含在:
Vsevolod Stakhov 2018-06-13 14:45:17 +01:00
父节点 d133232f34
当前提交 378a1f21a3

查看文件

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