Updated examples

This commit is contained in:
WilliamMiceli
2018-12-09 18:04:58 -05:00
parent 6227eb85af
commit 4ae3f81d5e
9 changed files with 83 additions and 3 deletions

View File

@@ -0,0 +1,25 @@
user nobody;
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;
}
}