snail007
snail007
需要自己编译管理后台admin,会员后台web,接口api,内网穿透cluster,client和server。数据库和文档都在docs目录。 内网穿透架构和我的代理项目goproxy( https://github.com/snail007/goproxy )的内网穿透架构几乎一样,只是这里的cluster是bridge的集群版本。怎么使用启动参数在文档里面有说明,架构和goproxy基本一致。
disableFilter建议改成disableGlobalFilter,具有更明确的意思。
不支持
https://github.com/snail007/goproxy dns代理功能支持!
端口范围是商业版功能
# Github release镜像工具 国内下载Github项目的release是件很痛苦的事情,幸运的有几KB的速度,脸黑的直接超时。 于是有了该工具,部署到国内可以正常访问的VPS上,而且VPS可以正常访问Github。 那么该工具就能够自带同步项目最新的release文件,提供下载。 由于使用gf,代码自然不多,就不开新项目了,直接附带打包的项目源码: [ghmirror.zip](https://github.com/gogf/gf/files/3782463/ghmirror.zip) 由于提供的是http代理非标准端口,可以用nginx反向代理,核心nginx示例配置如下,具体情况直接对比修改一下。 http段: ``` upstream snail007 { server 127.0.0.1:7180; } ``` server段: ``` location ~ /snail007 { proxy_pass http://snail007; } ``` 线上实例:https://www.host900.com/snail007/goproxy/
> > https://www.host900.com/snail007/goproxy/ > > 怎么使用啊 请访问:https://github.com/snail007/goproxy
goproxy commercial edition API Auth feature can do it.
FROM debian not FROM alpine