proxy-tunnel / README.md
airsltd's picture
Upload folder using huggingface_hub
f0889c9 verified
|
Raw
History Blame Contribute Delete
674 Bytes
---
title: WebSocket Proxy Tunnel
emoji: 🚇
colorFrom: blue
colorTo: green
sdk: docker
app_port: 7860
---
# WebSocket Proxy Tunnel
通过 Hugging Face Space 部署 WebSocket 隧道代理,支持 HTTP/HTTPS 全协议。
## 客户端使用
```bash
# 有 PROXY_TOKEN(推荐)
wstunnel client \
--http-upgrade-path-prefix "你的PROXY_TOKEN" \
-L socks5://127.0.0.1:1080 \
wss://airsltd-proxy-tunnel.hf.space
# 无 PROXY_TOKEN
wstunnel client \
-L socks5://127.0.0.1:1080 \
wss://airsltd-proxy-tunnel.hf.space
```
## 使用代理
```bash
export http_proxy=socks5://127.0.0.1:1080
export https_proxy=socks5://127.0.0.1:1080
curl https://www.google.com
```