This commit is contained in:
zhengrui 2018-04-14 21:18:10 +08:00
parent 94b325936b
commit 48f3c3f9a6
3 changed files with 56 additions and 5 deletions

View File

@ -27,9 +27,34 @@ gost - GO Simple Tunnel
* [权限控制](https://docs.ginuerzh.xyz/gost/permission/) * [权限控制](https://docs.ginuerzh.xyz/gost/permission/)
* [负载均衡](https://docs.ginuerzh.xyz/gost/load-balancing/) * [负载均衡](https://docs.ginuerzh.xyz/gost/load-balancing/)
Wiki站点: https://docs.ginuerzh.xyz/gost/ Wiki站点: <https://docs.ginuerzh.xyz/gost/>
Google讨论组: https://groups.google.com/d/forum/go-gost Google讨论组: <https://groups.google.com/d/forum/go-gost>
安装
------
#### 二进制文件
<https://github.com/ginuerzh/gost/releases>
#### 源码编译
```bash
go get -u github.com/ginuerzh/gost/cmd/gost
```
#### Docker
```bash
docker pull ginuerzh/gost
```
#### Ubuntu商店
```bash
sudo snap install gost
```
快速上手 快速上手
------ ------

View File

@ -24,9 +24,35 @@ Features
* [Permission control](https://docs.ginuerzh.xyz/gost/en/permission/) * [Permission control](https://docs.ginuerzh.xyz/gost/en/permission/)
* [Load balancing](https://docs.ginuerzh.xyz/gost/en/load-balancing/) * [Load balancing](https://docs.ginuerzh.xyz/gost/en/load-balancing/)
Wiki: https://docs.ginuerzh.xyz/gost/en/ Wiki: <https://docs.ginuerzh.xyz/gost/en/>
Google group: https://groups.google.com/d/forum/go-gost Google group: <https://groups.google.com/d/forum/go-gost>
Installation
------
#### Binary files
<https://github.com/ginuerzh/gost/releases>
#### From source
```bash
go get -u github.com/ginuerzh/gost/cmd/gost
```
#### Docker
```bash
docker pull ginuerzh/gost
```
#### Ubuntu store
```bash
sudo snap install gost
```
Getting started Getting started
------ ------

View File

@ -14,7 +14,7 @@ import (
) )
// Version is the gost version. // Version is the gost version.
const Version = "2.5-rc2" const Version = "2.5"
// Debug is a flag that enables the debug log. // Debug is a flag that enables the debug log.
var Debug bool var Debug bool