From charlesreid1

(Created page with "==Mac== On mac you can install stunnel with homebrew: <pre> $ brew install stunnel </pre> If it gets crusty, update it. If links break or brew says, <code>Warning: stunnel-...")
 
 
(2 intermediate revisions by the same user not shown)
Line 12: Line 12:
$ brew link --overwrite stunnel
$ brew link --overwrite stunnel
</pre>
</pre>
==Linux==
Download source from: https://www.stunnel.org/index.html
<pre>
$ # for the impatient
$ ./configure && make && make install
</pre>
Or just use aptitude:
<pre>
$ apt-get install stunnel
</pre>
==Docker==
Dockerfile for a simple stunnel container that imports keys and config file from outside the container: http://git.charlesreid1.com/docker/d-stunnel
[[Category:Mac]]
[[Category:Linux]]

Latest revision as of 20:18, 28 March 2017

Mac

On mac you can install stunnel with homebrew:

$ brew install stunnel

If it gets crusty, update it. If links break or brew says, Warning: stunnel-X.Y.Z already installed, it's just not linked, update stunnel to the latest using:

$ brew link --overwrite stunnel

Linux

Download source from: https://www.stunnel.org/index.html

$ # for the impatient
$ ./configure && make && make install

Or just use aptitude:

$ apt-get install stunnel

Docker

Dockerfile for a simple stunnel container that imports keys and config file from outside the container: http://git.charlesreid1.com/docker/d-stunnel