  location /mytio {
      client_max_body_size    100m;
      proxy_pass http://127.0.0.1:6063;
      proxy_set_header Host $http_host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Scheme $scheme;
    }
    location /wss {
        proxy_pass http://localhost:9325;  # 将 WebSocket 请求转发到端口 9325
        proxy_http_version 1.1;  # 强制使用 HTTP/1.1 协议，WebSocket 需要
        proxy_set_header Upgrade $http_upgrade;  # WebSocket 协议升级头
        proxy_set_header Connection 'upgrade';  # 确保连接为升级
        proxy_set_header Host $host;  # 保持原始 Host 头
        proxy_cache_bypass $http_upgrade;  # 避免缓存 WebSocket 请求
    }