crucialnet/nginx.conf

16 lines
261 B
Nginx Configuration File

worker_processes 1;
events { worker_connections 1024; }
http {
#include mime.types;
sendfile on;
server {
root /usr/share/nginx/html/;
index index.html;
server_name localhost;
listen 80;
listen [::]:80;
}
}