Añadir nginx.conf

This commit is contained in:
2026-01-06 21:50:36 +00:00
parent d645db721b
commit 1ad0e63e9b

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;
}
}