~mwhudson/+junk/bench-fake-autobench

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
worker_processes 4;
worker_rlimit_nofile 200000;
error_log /var/log/nginx/error.log crit;
events {
worker_connections 4000;
multi_accept on;
}
http {
    open_file_cache max=200000 inactive=20s;
    open_file_cache_valid 30s;
    open_file_cache_min_uses 2;
    open_file_cache_errors on;
    #access_log /var/log/nginx/access.log main buffer=16k;
    access_log off;
    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 30;
    keepalive_requests 100000;
    reset_timedout_connection on;
    client_body_timeout 10;
    server {
        listen 80;
        root /usr/share/nginx/html;
        server_name localhost;

    }
}