Add nginx.conf

This commit is contained in:
Bryan 2025-09-22 18:10:28 +08:00
parent e972f99dcc
commit 2bf425b65f

11
nginx.conf Normal file
View File

@ -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;
}
}