docs(ActivitySwitchNotice): 更新WsProxy部署文档 (#2612)

- 将部署标题从四级改为三级
- 添加Windows exe直接运行的部署方式
- 添加Java jar包运行的部署方式
- 保留Docker部署方式并优化格式
- 更新下载链接指向release页面
This commit is contained in:
云端客
2026-01-03 11:29:41 +08:00
committed by GitHub
parent 4144ad9407
commit c205e0a26d

View File

@@ -142,10 +142,16 @@
}
```
#### 部署 [WsProxy](https://github.com/Kirito520Asuna/WsProxy)
提供docker镜像方便用户快速搭建WebSocket代理服务
### 部署 [WsProxy](https://github.com/Kirito520Asuna/WsProxy)
#### 1.windows exe 直接运行
前往 [release](https://github.com/Kirito520Asuna/WsProxy/releases) 下载 带windows的zip包解压运行.exe文件即可
#### 2.java
前往 [release](https://github.com/Kirito520Asuna/WsProxy/releases) 下载 jar包
```shell
java -jar xxxx.jar
```
#### 3.部署docker
```shell
docker pull ghcr.io/kirito520asuna/wsproxy:latest
docker run -d -p 8081:8081 -v /path/to/application-prod.yml:/app/application-prod.yml --name wsproxy ghcr.io/kirito520asuna/wsproxy:latest