An HTTP Proxy Server

Share the Internet with multiple computers. No administrative privileges are required. Supports any platform.

Download

Download the tool v2ray.

Edit the config file “config.json”

Replace everything with the following.

{
  "inbounds": [
    {
      "port": 38080, 
      "protocol": "http", 
      "settings": {
        "accounts": [
          {
            "user": "username_for_proxy",
            "pass": "password_for_proxy"
          }
        ],
        "timeout": 30
      }
    }
  ],
  "outbounds": [
    {
      "protocol": "freedom",
      "settings": {}
    }
  ],
  "log": {
    "loglevel": "warning"
  }
}

Change port, user and pass freely. user and pass can be empty. Use strong password for security purpose.

Run v2ray

v2ray -config config.json

Done