2023-08-01 00:21:00 +03:00

25 lines
368 B
Nginx Configuration File

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;
}
}
}