Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 1.19 KB

README.md

File metadata and controls

48 lines (37 loc) · 1.19 KB

Docker Stunnel

Stunnel packaged as a docker container. This container will act as a proxy to encrypt the connection between a client and the server using TLS.

Security Measures

  • SSLv2 is disabled.
  • SSLv3 is disabled.
  • TLSv1 is disabled.
  • TLSv1.1 is disabled.
  • Limit tls ciphers for openvpn, nginx, stunnel.

Usage

Docker Compose

stunnel:
  image: shahinism/stunnel
  ports:
    - "993:4911"
  links:
    - openvpn
  environment:
    - CLIENT=no
    - SERVICE=openvpn
    - ACCEPT=0.0.0.0:4911
    - CONNECT=openvpn:1194
  restart: always

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update the tests as appropriate.

License

This project is licensed under the GPLv3 License - see the LICENSE file for details