Sign inSign up

yinrg/shadowsockswithobfs

By yinrg

•Updated 6 months ago

Image
Networking
0

181

yinrg/shadowsockswithobfs repository overview

⁠shadowsockswithobfs

Shadowsocks-libev server bundled with simple-obfs⁠ plugin for HTTP/TLS traffic obfuscation.

⁠Quick Start

docker run -d \
  -p 20443:20443 \
  -e SS_PORT=20443 \
  -e SS_METHOD=chacha20-ietf-poly1305 \
  -e SS_PASSWORD=yourpassword \
  -e SS_PLUGIN=obfs-server \
  -e SS_PLUGIN_OPTS=obfs=tls \
  yinrg/shadowsockswithobfs:latest

⁠Docker Compose

version: '3.8'
services:
  shadowsocks:
    image: yinrg/shadowsockswithobfs:latest
    ports:
      - "20443:20443"
    environment:
      - SS_PORT=20443
      - SS_METHOD=chacha20-ietf-poly1305
      - SS_PASSWORD=yourpassword
      - SS_PLUGIN=obfs-server
      - SS_PLUGIN_OPTS=obfs=tls
    restart: always

⁠Environment Variables

VariableDefaultDescription
SS_SERVER0.0.0.0Listen address
SS_PORT8388Listen port
SS_PASSWORDyour_passwordPassword
SS_METHODaes-256-gcmEncryption method
SS_PLUGINobfs-serverPlugin name
SS_PLUGIN_OPTSobfs=httpPlugin options: obfs=http or obfs=tls

⁠Supported Encryption Methods

  • chacha20-ietf-poly1305 (recommended)
  • aes-256-gcm
  • aes-128-gcm

⁠Client Configuration

⁠ShadowsocksX-NG / Shadowsocks Android / Clash
FieldValue
Server149.88.6.30
Port20443
Passwordyour_password
Encryptionchacha20-ietf-poly1305
Pluginobfs-local
Plugin Optsobfs=tls;obfs-host=www.bing.com
⁠SIP002 URI
ss://[email protected]:20443/?plugin=obfs-local%3bobfs%3dtls%3bobfs-host%3dwww.bing.com#server1

⁠Supported Platforms

  • linux/amd64
  • linux/arm64

Tag summary

Content type

Image

Digest

sha256:482229e06…

Size

30.5 MB

Last updated

6 months ago

docker pull yinrg/shadowsockswithobfs:v1.0