2026-05-12

This commit is contained in:
2026-05-12 13:01:04 +08:00
parent b20da3cd06
commit 80fa90177d
12340 changed files with 2089722 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/plain text/css application/json application/javascript text/xml;
location / {
try_files $uri $uri/ /index.html;
}
location /api {
proxy_pass http://training-backend:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}