Sign inSign up

gists/simple-obfs

By gists

Updated over 6 years ago

A simple obfuscating tool (Deprecated)

Image
11

50K+

gists/simple-obfs repository overview

Environment:
EnvironmentDefault value
SERVER_ADDR0.0.0.0
SERVER_PORT8388
DNS_SERVER8.8.8.8
OBFS_OPTShttp
FORWARD127.0.0.1:8388
FAILOVERwww.163.com:80
Creating an instance:
docker run \
    -d \
    --name simple-obfs \
    -p 12345:12345 \
    -e FORWARD=127.0.0.1:8388
    gists/simple-obfs
Compose file with custom command:
simple-obfs:
    image: gists/simple-obfs
    ports:
        - "12345:12345"
    command: obfs-server -s 0.0.0.0 -p 12345 --obfs http -r 127.0.0.1:8388
    restart: always
Compose example with shadowsocks-libev
version: '3'

services:
    shadowsocks:
        container_name: shadowsocks
        image: gists/shadowsocks-libev
        ports:
            - "12345:8388/udp"
        networks:
            overlay:
        environment:
          - PASSWORD=passowrd
          - METHOD=chacha20-ietf-poly1305
        restart: always

      simple-obfs:
        container_name: obfs
        image: gists/simple-obfs
        ports:
            - "12345:8388/tcp"
        environment:
            - FORWARD=shadowsocks:8388
        depends_on:
            - shadowsocks
        networks:
            overlay:
        restart: always

networks:
    overlay:
        driver: bridge

Tag summary

Content type

Image

Digest

Size

4.4 MB

Last updated

over 6 years ago

docker pull gists/simple-obfs