Refactor code structure for improved readability and maintainability

This commit is contained in:
SoilZHu
2025-09-24 18:32:09 +08:00
parent df4e21dfc7
commit 318174eef9
8 changed files with 0 additions and 5 deletions
+12
View File
@@ -0,0 +1,12 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
location / {
index index.html index.htm;
try_files $uri $uri/ /index.html;
add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";
}
}