inferno/clients/web/nginx.conf

10 lines
177 B
Nginx Configuration File

server {
listen 3000;
server_name localhost;
location / {
root /var/www/html;
index index.html index.htm;
try_files $uri $uri/ =404;
}
}