Skip to content

Proxy designed to add TLS encryption functionality

Notifications You must be signed in to change notification settings

EasyPi/docker-stunnel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stunnel

Build Status Docker Stars

Stunnel is a proxy designed to add TLS encryption functionality to existing clients and servers without any changes in the programs' code.

docker-compose.yml

server:
  image: easypi/stunnel
  ports:
    - "9080:9080"
  volumes:
    - ./data:/etc/stunnel
    - ./data/server.conf:/etc/stunnel/stunnel.conf
  restart: always

client:
  image: easypi/stunnel
  ports:
    - "9050:9050"
  volumes:
    - ./data:/etc/stunnel
    - ./data/client.conf:/etc/stunnel/stunnel.conf
  extra_hosts:
    - server:1.2.3.4
  restart: always

Config Stunnel

$ mkdir -p ~/fig/stunnel/data
$ cd ~/fig/stunnel/data
$ openssl req -x509 -nodes -newkey rsa:1024 -days 365 -subj '/CN=stunnel' -keyout stunnel.key -out stunnel.crt
$ chmod 400 stunnel.key
$ vim -p server.conf client.conf

File: server.conf

foreground = yes
debug = warning

[socks_server]
protocol = socks
accept = 9080
cert = stunnel.crt
key = stunnel.key

File: client.conf

foreground = yes
debug = warning

[socks_client]
client = yes
accept = 0.0.0.0:9050
connect = server:9080
verifyPeer = yes
CAfile = stunnel.crt

Start Server

$ docker-compose up -d server

Start Client

$ docker-compose up -d client
$ curl -x socks5h://127.0.0.1:9050 ifconfig.co

Known Issues

About

Proxy designed to add TLS encryption functionality

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages