Skip to content

Lightweight proxy, initially implemented for Vless protocol

License

Notifications You must be signed in to change notification settings

earthengine/rocks_works

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rocks Works

Lightweight proxy, initially implemented for Vless protocol

Building the Docker Image

To build the Docker image, run the following command in the root directory of the project:

docker build -t rocks_works .

This command will create a Docker image named rocks_works using the Dockerfile provided in the project.

Running the Docker Container

To run the Docker container, use the following command:

docker run -p 34434:34434 rocks_works

This command will start a container from the rocks_works image and map port 34434 of the host to port 34434 of the container.

Example v2ray config

{
  "log": {
    "loglevel": "warning"
  },
  "inbounds": [
    {
      "port": 1081,
      "listen": "127.0.0.1",
      "protocol": "socks",
      "settings": {
        "auth": "noauth",
        "udp": false,
        "ip": "127.0.0.1"
      }
    }
  ],
  "outbounds": [
    {
      "protocol": "vless",
      "settings": {
        "vnext": [
          {
            "address": "127.0.0.1",
            "port": 34434,
            "users": [
              {
                "id": "74657374-0000-0000-0000-000000000000",
                "encryption": "none"
              }
            ]
          }
        ]
      },
      "tag": "rocks"
    }
  ]
}

About

Lightweight proxy, initially implemented for Vless protocol

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published