blob: 99073aab1abe24fd82f58f5f1a7f3aae05c3b7b8 [file] [log] [blame]
Filip Tehlarc204c872022-12-21 08:59:16 +01001master_process on;
2worker_rlimit_nofile 10240;
3worker_processes 2;
4daemon off;
5
6events {
7 use epoll;
8 worker_connections 10240;
9 accept_mutex off;
10 multi_accept off;
11}
12
13http {
14 keepalive_timeout 300s;
15 keepalive_requests 1000000;
16 sendfile on;
17 server {
18 listen 80;
19 root /usr/share/nginx;
20 index index.html index.htm;
21 location /return_ok
22 {
23 return 200 '';
24 }
Filip Tehlar8df3de42023-01-27 13:14:34 +010025 location /64B.json
26 {
27 return 200 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
28 }
Filip Tehlarc204c872022-12-21 08:59:16 +010029 }
30}