Browse Source

[Test] Fix config

tags/1.7.6
Vsevolod Stakhov 6 years ago
parent
commit
378a1f21a3
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      test/functional/configs/nginx.conf

+ 2
- 3
test/functional/configs/nginx.conf View 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;
}
}

Loading…
Cancel
Save