From 13f507211018845a21e08622ec1e0eb75e92aeb7 Mon Sep 17 00:00:00 2001 From: Alejandro Rosales Date: Tue, 6 Jan 2026 22:22:51 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20nginx.conf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nginx.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..79fd959 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + server_name _; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +}