Sign inSign up

teachmyself/sslocal

By teachmyself

•Updated about 7 years ago

A client of ssserver named sslocal, used to convert socket proxy to http proxy.

Image
2

634

teachmyself/sslocal repository overview

⁠sslocal

[TOC]

This image is only for technical study and research, please strictly abide by relevant laws and regulations, is strictly prohibited for commercial thoroughfare, do not browse or disseminate illegal information.

⁠Pull image

docker pull teachmyself/sslocal
docker images | grep sslocal

⁠Start container named sslocal

This step depedends on a ssserver. You should change the value of SERVER_HOST, SERVER_PORT, PASSWORD, METHOD in the command before you run it.

docker run -d  \
    -e SERVER_HOST=1.1.1.1 \
    -e SERVER_PORT=8888 \
    -e PASSWORD=123456 \
    -e METHOD=aes-256-cfb \
    -p 8118:8118 \
    --name sslocal \
    --restart always \
    teachmyself/sslocal

⁠Check sslocal container

docker ps

⁠Check logs

docker exec sslocal tail -f /var/log/sslocal.log

⁠Stop & Remove sslocal

docker stop sslocal

docker rm sslocal

⁠Proxy Usage

export http_proxy=127.0.0.1:8118;
export https_proxy=127.0.0.1:8118;

curl www.google.com

Tag summary

Content type

Image

Digest

Size

17.3 MB

Last updated

about 7 years ago

docker pull teachmyself/sslocal