File size: 520 Bytes
99de5ef
 
87cac8f
 
99de5ef
 
 
 
 
 
 
 
 
 
 
 
0a7909d
 
 
 
 
 
99de5ef
 
 
 
 
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 1;

pid /app/tmp/nginx.pid;

events {
    worker_connections 1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    # Writable logs
    access_log /app/logs/access.log;
    error_log  /app/logs/error.log warn;

    # Global file upload settings
    client_max_body_size 100M;
    client_body_buffer_size 1M;
    client_body_timeout 300s;
    client_header_timeout 300s;

    sendfile        on;
    keepalive_timeout  65;

    include /etc/nginx/conf.d/*.conf;
}