Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 898 Bytes

README.md

File metadata and controls

46 lines (33 loc) · 898 Bytes

shadowsocks-lite

Build Status npm version

Super simple to use

Socks5 proxy client and server.

Usage

  1. Create a file named config.json, with the following content:
    {
      "server":"my_server_ip",
      "server_port":8388,
      "local_address": "127.0.0.1",
      "local_port":1080,
      "password":"foobar"
    }
  1. cd into the directory of config.json.

  2. On your server, run:

    npm install -g shadowsocks-lite
    sslserver
  1. On your client, run:
    npm install -g shadowsocks-lite
    ssllocal
  1. Change the proxy setting in your browser.
    protocol: socks5
    hostname: 127.0.0.1
    port: 1080