From e1bf04eaf4bfcf1e95c4a1962a09a8856c95e813 Mon Sep 17 00:00:00 2001 From: Phet Date: Thu, 5 Jan 2023 16:51:30 +0700 Subject: [PATCH] [chore] - add ngnix.conf file --- nginx.conf | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..4ede8b1 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,9 @@ +server { + listen 8080; + root /usr/share/nginx/html; + include /etc/nginx/mime.types; + + location / { + try_files $uri /index.html; + } +}