26 lines
439 B
Nginx Configuration File
26 lines
439 B
Nginx Configuration File
user nobody nogroup;
|
|
worker_processes 5; ## Default: 1
|
|
worker_rlimit_nofile 8192;
|
|
|
|
events {
|
|
worker_connections 4096; ## Default: 1024
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
index index.html;
|
|
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
# serve static files
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|
|
} |