A simple obfuscating tool (Deprecated)
50K+
| Environment | Default value |
|---|---|
| SERVER_ADDR | 0.0.0.0 |
| SERVER_PORT | 8388 |
| DNS_SERVER | 8.8.8.8 |
| OBFS_OPTS | http |
| FORWARD | 127.0.0.1:8388 |
| FAILOVER | www.163.com:80 |
docker run \
-d \
--name simple-obfs \
-p 12345:12345 \
-e FORWARD=127.0.0.1:8388
gists/simple-obfs
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
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
Content type
Image
Digest
Size
4.4 MB
Last updated
over 6 years ago
docker pull gists/simple-obfs