v4.5
This commit is contained in:
@ -2,7 +2,9 @@ proxy更新日志
|
|||||||
v4.5
|
v4.5
|
||||||
1.优化了mux内网穿透连接管理逻辑,增强了稳定性.
|
1.优化了mux内网穿透连接管理逻辑,增强了稳定性.
|
||||||
2.mux内网穿透增加了tcp和kcp协议支持,之前是tls,现在支持三种协议tcp,tls,kcp.
|
2.mux内网穿透增加了tcp和kcp协议支持,之前是tls,现在支持三种协议tcp,tls,kcp.
|
||||||
|
3.keygen参数增加了用法: proxy keygen usage.
|
||||||
|
4.http(s)/socks5代理,tls增加了自签名证书支持.
|
||||||
|
5.建议升级.
|
||||||
v4.4
|
v4.4
|
||||||
1.增加了协议转换sps功能,代理协议转换使用的是sps子命令(socks+https的缩写),
|
1.增加了协议转换sps功能,代理协议转换使用的是sps子命令(socks+https的缩写),
|
||||||
sps本身不提供代理功能,只是接受代理请求"转换并转发"给已经存在的http(s)代理
|
sps本身不提供代理功能,只是接受代理请求"转换并转发"给已经存在的http(s)代理
|
||||||
|
|||||||
@ -34,7 +34,8 @@ Proxy is a high performance HTTP, HTTPS, HTTPS, websocket, TCP, UDP, Socks5 prox
|
|||||||
- ...
|
- ...
|
||||||
|
|
||||||
|
|
||||||
This page is the v4.4 manual, and the other version of the manual can be checked by the following link.
|
This page is the v4.5 manual, and the other version of the manual can be checked by the following link.
|
||||||
|
- [v4.4 manual](https://github.com/snail007/goproxy/tree/v4.4)
|
||||||
- [v4.3 manual](https://github.com/snail007/goproxy/tree/v4.3)
|
- [v4.3 manual](https://github.com/snail007/goproxy/tree/v4.3)
|
||||||
- [v4.2 manual](https://github.com/snail007/goproxy/tree/v4.2)
|
- [v4.2 manual](https://github.com/snail007/goproxy/tree/v4.2)
|
||||||
- [v4.0-4.1 manual](https://github.com/snail007/goproxy/tree/v4.1)
|
- [v4.0-4.1 manual](https://github.com/snail007/goproxy/tree/v4.1)
|
||||||
|
|||||||
@ -35,7 +35,8 @@ Proxy是golang实现的高性能http,https,websocket,tcp,udp,socks5代理服务
|
|||||||
- ...
|
- ...
|
||||||
|
|
||||||
|
|
||||||
本页是v4.4手册,其他版本手册请点击下面链接查看.
|
本页是v4.5手册,其他版本手册请点击下面链接查看.
|
||||||
|
- [v4.4手册](https://github.com/snail007/goproxy/tree/v4.4)
|
||||||
- [v4.3手册](https://github.com/snail007/goproxy/tree/v4.3)
|
- [v4.3手册](https://github.com/snail007/goproxy/tree/v4.3)
|
||||||
- [v4.2手册](https://github.com/snail007/goproxy/tree/v4.2)
|
- [v4.2手册](https://github.com/snail007/goproxy/tree/v4.2)
|
||||||
- [v4.0-v4.1手册](https://github.com/snail007/goproxy/tree/v4.1)
|
- [v4.0-v4.1手册](https://github.com/snail007/goproxy/tree/v4.1)
|
||||||
@ -187,6 +188,7 @@ http,tcp,udp代理过程会和上级通讯,为了安全我们采用加密通讯,
|
|||||||
在linux上并安装了openssl命令,可以直接通过下面的命令生成证书和key文件.
|
在linux上并安装了openssl命令,可以直接通过下面的命令生成证书和key文件.
|
||||||
`./proxy keygen`
|
`./proxy keygen`
|
||||||
默认会在当前程序目录下面生成证书文件proxy.crt和key文件proxy.key。
|
默认会在当前程序目录下面生成证书文件proxy.crt和key文件proxy.key。
|
||||||
|
更多用法:`proxy keygen usage`。
|
||||||
|
|
||||||
### **后台运行**
|
### **后台运行**
|
||||||
默认执行proxy之后,如果要保持proxy运行,不能关闭命令行.
|
默认执行proxy之后,如果要保持proxy运行,不能关闭命令行.
|
||||||
|
|||||||
Reference in New Issue
Block a user