feat(proxy): 添加沙箱 API 转发配置 /sandbox/

Made-with: Cursor
This commit is contained in:
wangbo 2026-03-04 16:38:27 +08:00
parent e79d74740f
commit 1b85369903

View File

@ -144,4 +144,17 @@ server {
proxy_buffering off; # 对于 WebSocket 连接禁用缓冲
}
# 沙箱环境 API脚本执行、下载、安装依赖等需在 docker-compose 中取消 SANDBOX_PORT 映射
location /sandbox/ {
proxy_pass http://127.0.0.1:8081/;
proxy_read_timeout 300s;
client_max_body_size 50M;
proxy_redirect off;
proxy_set_header X-Original-Prefix '/sandbox';
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;
proxy_set_header Host $host;
}
}