Documentation/nginx.conf

18 lines
203 B
Nginx Configuration File
Raw Normal View History

2021-08-16 21:34:57 -04:00
worker_processes 4;
events {
worker_connections 1024;
}
http {
server {
listen 80;
root /usr/bin;
include /etc/nginx/mime.types;
# location / {
# try_files $uri /index.html =404;
# }
}
}