21 lines
296 B
Nginx Configuration File
21 lines
296 B
Nginx Configuration File
worker_processes auto;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 3000;
|
|
server_name localhost;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
error_page 404 /404.html;
|
|
}
|
|
}
|