Files
vpp/extras/hs-test/resources/nginx/nginx.conf
Filip Tehlar 8df3de4882 hs-test: add nginx perf tests
Type: test

Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Change-Id: Ic609cf70c1d381afa78f393700359434c8bd0452
2023-02-06 22:29:28 +00:00

31 lines
532 B
Nginx Configuration File

master_process on;
worker_rlimit_nofile 10240;
worker_processes 2;
daemon off;
events {
use epoll;
worker_connections 10240;
accept_mutex off;
multi_accept off;
}
http {
keepalive_timeout 300s;
keepalive_requests 1000000;
sendfile on;
server {
listen 80;
root /usr/share/nginx;
index index.html index.htm;
location /return_ok
{
return 200 '';
}
location /64B.json
{
return 200 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
}
}
}