From bffcdd49a0ec383c7486a1ff0e4e6fb90e2bba39 Mon Sep 17 00:00:00 2001 From: sunlei Date: Sun, 17 May 2026 12:32:52 +0800 Subject: [PATCH] =?UTF-8?q?chore(playground):=20=E5=A2=9E=E5=8A=A0=20Nginx?= =?UTF-8?q?=20=E5=8F=91=E5=B8=83=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/nginx-playground.conf | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 deploy/nginx-playground.conf diff --git a/deploy/nginx-playground.conf b/deploy/nginx-playground.conf new file mode 100644 index 0000000..c7a609d --- /dev/null +++ b/deploy/nginx-playground.conf @@ -0,0 +1,35 @@ +server { + listen 48090; + server_name _; + + root /usr/share/nginx/html/playground; + index index.html; + + gzip on; + gzip_min_length 1024; + gzip_types text/plain text/css application/json application/javascript text/xml application/xml image/svg+xml; + + location = /index.html { + add_header Cache-Control "no-store"; + try_files $uri =404; + } + + location ^~ /api/ { + proxy_pass http://192.168.31.224:48085/; + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location ~* \.(js|mjs|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { + expires 1y; + add_header Cache-Control "public, immutable"; + try_files $uri =404; + } + + location / { + try_files $uri $uri/ /index.html; + } +}