Files
Personal-Rancher-Catalog/templates/Nginx/Examples/SimpleStatic/nginx.conf
2020-04-29 14:37:37 -04:00

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