From 1795165fd0b82b8bb4ee8c7e6244c52ea5005614 Mon Sep 17 00:00:00 2001 From: danielzlatanov <110429874+danielzlatanov@users.noreply.github.com> Date: Mon, 23 Sep 2024 15:57:59 +0300 Subject: [PATCH] add custom nginx config --- nginx.conf | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..09c5c28 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,8 @@ +server { + listen 4200; + + location / { + root /usr/share/nginx/html; + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file