开源标准版系统长链接反向代理详解
一、nginx反向代理 location /notice {proxy_pass http://127.0.0.1:50001/;proxy_http_version 1.1;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection "upgrade";proxy_set_header X-real-ip $remote_addr;proxy_set_header X-Forwarded-For $…
2025-09-27