Adicionar nginx.conf

This commit is contained in:
Bxio 2025-07-04 10:26:05 +00:00
parent f4be9dff4b
commit 75ec44ae03

14
nginx.conf Normal file
View File

@ -0,0 +1,14 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
error_page 404 /index.html;
}