blob: 80ea602e3a1e93e518d9372483526e7ef9e0cafb [file] [log] [blame]
Matus Fabian8792e5c2024-08-14 12:38:20 +02001master_process on;
2worker_rlimit_nofile 10240;
3worker_processes 2;
4daemon off;
5
6error_log /tmp/nginx/{{.LogPrefix}}-error.log info;
7
8events {
9 use epoll;
10 worker_connections 10240;
11 accept_mutex off;
12 multi_accept off;
13}
14
15http {
16 keepalive_timeout 300s;
17 keepalive_requests 1000000;
18 sendfile on;
19 server {
20 access_log /tmp/nginx/{{.LogPrefix}}-access.log;
21 listen {{.Port}};
22 server_name {{.Address}};
23 root /usr/share/nginx;
24 index index.html index.htm;
25 location /64B {
26 return 200 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
27 }
28 location / {
29 sendfile on;
30 }
31 }
32}