如何搭建shadowsocks并使用github部署

什么是shadowsocks

shadowsocks是一个基于Socks5代理方式的网络传输包装工具,可以用来突破网络防火墙,保护隐私等。

准备工作

在搭建shadowsocks之前,需要做一些准备工作:

  • 一台云服务器(如vultr、搬瓦工等)
  • 安装好Git的开发环境
  • Github账号

搭建shadowsocks服务器

  1. 登录Github账号
  2. 创建一个新的Repository,命名为shadowsocks
  3. 在本地克隆该Repository:git clone https://github.com/your_username/shadowsocks.git
  4. 进入shadowsocks目录,编辑配置文件:nano config.json
  5. 配置文件示例:

{ “server”:”0.0.0.0″, “server_port”:8388, “local_address”: “127.0.0.1”, “local_port”:1080, “password”:”your_password”, “timeout”:300, “method”:”aes-256-cfb

正文完