From 6383a202ef121fb08763ec2daa5b47667fc8b3ca Mon Sep 17 00:00:00 2001 From: xbdm Date: Sat, 15 Jul 2023 16:48:37 +0000 Subject: [PATCH] Create default nginx.conf again --- nginx.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..74c8ba2 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,17 @@ +events {} +http { + include mime.types; + + server { + listen 80; + access_log off; + error_log off; + + + location / { + root /app; + index index.html; + try_files $uri $uri/ /index.html; + } + } +} \ No newline at end of file