13 lines
205 B
Nginx Configuration File
Raw Normal View History

2025-01-24 19:17:26 -03:00
events { }
http {
include mime.types;
server {
listen 80;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html =404;
}
}
}