From e4564dbcb392a2c41cf663dbf9b532fa7e493cde Mon Sep 17 00:00:00 2001 From: gitadmin Date: Mon, 10 Aug 2026 12:34:22 +0000 Subject: [PATCH] Add nginx.conf --- nginx.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 00000000..67e4472b --- /dev/null +++ b/nginx.conf @@ -0,0 +1,10 @@ +server { + listen 80; + server_name _; + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file