23 lines
390 B
Nginx Configuration File
23 lines
390 B
Nginx Configuration File
user nginx;
|
|
worker_processes auto;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
types {
|
|
text/javascript mjs;
|
|
}
|
|
default_type application/octet-stream;
|
|
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 65;
|
|
client_max_body_size 10G;
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
|
}
|