21 lines
319 B
Nginx Configuration File
21 lines
319 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
http
|
|
{
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
server {
|
|
listen 80;
|
|
root /var/www/html;
|
|
index index.html;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|
|
}
|
|
|