From f348298acd64b30f170771ff3dfcd3f097a6acdc Mon Sep 17 00:00:00 2001 From: "arraykeys@gmail.com" Date: Tue, 13 Mar 2018 10:29:26 +0800 Subject: [PATCH] v4.5 --- CHANGELOG | 8 +++++--- README.md | 3 ++- README_ZH.md | 6 ++++-- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f510159..020bbda 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,10 @@ proxy更新日志 v4.5 -1.优化了mux内网穿透连接管理逻辑,增强了稳定性. -2.mux内网穿透增加了tcp和kcp协议支持,之前是tls,现在支持三种协议tcp,tls,kcp. - +1.优化了mux内网穿透连接管理逻辑,增强了稳定性. +2.mux内网穿透增加了tcp和kcp协议支持,之前是tls,现在支持三种协议tcp,tls,kcp. +3.keygen参数增加了用法: proxy keygen usage. +4.http(s)/socks5代理,tls增加了自签名证书支持. +5.建议升级. v4.4 1.增加了协议转换sps功能,代理协议转换使用的是sps子命令(socks+https的缩写), sps本身不提供代理功能,只是接受代理请求"转换并转发"给已经存在的http(s)代理 diff --git a/README.md b/README.md index 3eb6ab6..a949255 100644 --- a/README.md +++ b/README.md @@ -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.2 manual](https://github.com/snail007/goproxy/tree/v4.2) - [v4.0-4.1 manual](https://github.com/snail007/goproxy/tree/v4.1) diff --git a/README_ZH.md b/README_ZH.md index 19841fb..08f442f 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -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.2手册](https://github.com/snail007/goproxy/tree/v4.2) - [v4.0-v4.1手册](https://github.com/snail007/goproxy/tree/v4.1) @@ -187,7 +188,8 @@ http,tcp,udp代理过程会和上级通讯,为了安全我们采用加密通讯, 在linux上并安装了openssl命令,可以直接通过下面的命令生成证书和key文件. `./proxy keygen` 默认会在当前程序目录下面生成证书文件proxy.crt和key文件proxy.key。 - +更多用法:`proxy keygen usage`。 + ### **后台运行** 默认执行proxy之后,如果要保持proxy运行,不能关闭命令行. 如果想在后台运行proxy,命令行可以关闭,只需要在命令最后加上--daemon参数即可.