worker_processes auto; worker_rlimit_nofile 30000; events { worker_connections 15000; } http { include /etc/nginx/mime.types; default_type application/octet-stream; server { listen 80; location /static/ { root /data; } location / { proxy_pass http://staticfiles-api:8080; } } }