blob: ec83aa9fbc8ce7380e7b37c782fb68ce6be56299 [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 }
25 }
26}