From 2bf425b65fce97e334debda3b01c0de81391956a Mon Sep 17 00:00:00 2001 From: Bryan Date: Mon, 22 Sep 2025 18:10:28 +0800 Subject: [PATCH] Add nginx.conf --- 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..bd75641 --- /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; + } +}