first commit

This commit is contained in:
2026-08-31 16:23:40 +08:00
commit b9cc1fda0d
34 changed files with 4995 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
server {
listen 80;
server_name example.com;
root /var/www/ydwl-website;
# Serve the .gz files emitted by `npm run build` when the client supports gzip.
gzip_static on;
gzip_vary on;
gzip_types text/plain text/css application/javascript application/json image/svg+xml application/xml;
location / {
try_files $uri $uri/ /index.html;
}
}