From 0be56604ca9e7dea541f4934d0c7320fb3f3392d Mon Sep 17 00:00:00 2001 From: Lunix-420 Date: Sun, 13 Oct 2024 13:28:40 +0200 Subject: [PATCH] fix: Missing 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 0000000..7fab77e --- /dev/null +++ b/nginx.conf @@ -0,0 +1,10 @@ +server { + listen 80; + server_name localhost; + + location / { + root /usr/share/nginx/html; + index index.html; + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file