25 lines
368 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
}
|