From 2c9b84f98b5d7937beab914df996d64e06b4f38f Mon Sep 17 00:00:00 2001 From: GigiaJ Date: Wed, 1 Oct 2025 17:14:39 -0500 Subject: [PATCH] Add nginx.conf fallback --- 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..fcd2c37 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + server_name localhost; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file