From 5fabf63afef12a571dd89ab16f845215bcb9fb36 Mon Sep 17 00:00:00 2001 From: carlos Date: Fri, 1 May 2026 19:17:51 +0000 Subject: [PATCH] Add nginx.conf for Dokploy deployment --- nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..1e37726 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,6 @@ +server { + listen 80; + root /usr/share/nginx/html; + index index.html; + try_files $uri $uri/ /index.html; +}