Skip to content

VerSign010/gost-h

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

一键部署 Gost(ss+mws) 到 heroku Deploy

  1. 服务端部署后,view查看,显示404 page not found,表示部署成功。
  1. 客户端本地代理,直接运行以下命令,本地开放端口1080,默认支持socks协议。
   gost.exe -L=:1080 -F=ss+mwss://method:password@appname.herokuapp.com:443
  1. 客户端下载
  1. 技术文档站点
  1. 可通过cloudflare worker中转流量:
addEventListener(
    "fetch",event => {
    let url=new URL(event.request.url);
    url.hostname="xxx.herokuapp.com";
    let request=new Request(url,event.request);
    event. respondWith(
      fetch(request)
    )
  }
)

参考

https://github.com/ginuerzh/gost

https://github.com/gfwlist/gfwlist

https://github.com/xausky/ShadowsocksGostPlugin

About

一键部署 Gost(ss+mws) 到 Heroku

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • VBScript 76.8%
  • Dockerfile 18.3%
  • Batchfile 4.9%