aboutsummaryrefslogtreecommitdiffstats
path: root/test/functional/configs/nginx.conf
blob: 72472d16e04528603ff6c876ce49becda321bce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
events {
}
worker_processes  1;
pid   ${TMPDIR}/nginx.pid;
error_log  ${TMPDIR}/error.log;
http {
    default_type application/octet-stream;
    sendfile     on;

    server {
        # no need for root privileges
        listen      ${NGINX_ADDR}:${NGINX_PORT};
        server_name localhost;

        location / {
            root      ${TMPDIR};
            autoindex on;
        }
    }
}