šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

github.com/isayme/go-shadowsocks

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/isayme/go-shadowsocks

v0.4.4
Source
Go
Version published
Created
Source

Shadowsocks

Docker Image Version (latest semver) Docker Image Size (latest semver) Docker Pulls

A fast and memory efficient shadowsocks server in Go.

Support Methods

  • chacha20-ietf-poly1305
  • aes-128-gcm, aes-192-gcm, aes-256-gcm
  • aes-128-cfb, aes-192-cfb, aes-256-cfb
  • aes-128-ctr, aes-192-ctr, aes-256-ctr
  • dec-cfb
  • rc4-md5, rc4-md5-6
  • chacha20, chacha20-ietf
  • cast5-cfb
  • bf-cfb

Docker Compose

server

version: '3'

services:
  ss-server:
    container_name: ss-server
    image: isayme/shadowsocks:latest
    ports:
      # expose ss port
      - "8388:8388"
    volumes:
      # config file
      - ./config/shadowsocks/shadowsocks.json:/shadowsocks/shadowsocks.json
    environment:
      - CONF_FILE_PATH=/shadowsocks/shadowsocks.json
    command: /app/shadowsocks server
    restart: unless-stopped

local

version: '3'

services:
  ss-local:
    container_name: ss-local
    image: isayme/shadowsocks:latest
    ports:
      # expose socks5 port
      - "1080:1080"
    volumes:
      - ./config/shadowsocks/shadowsocks.json:/shadowsocks/shadowsocks.json
    environment:
      - CONF_FILE_PATH=/shadowsocks/shadowsocks.json
    command: /app/shadowsocks local
    restart: unless-stopped

FAQs

Package last updated on 15 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts