Añadir nginx.conf

This commit is contained in:
2026-01-06 22:22:51 +00:00
parent d93c10e88e
commit 13f5072110

11
nginx.conf Normal file
View File

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