Site icon Adron's Composite Code

Installing OpenSSL, Other Notes. Because: Security

I am in the process of setting up an SSL (Secure Sockets Layer) Cert to enable HTTPS on some sites and APIs I’m building. In that effort I needed to setup OpenSSL to create a CSR (Certificate Signing Request) and get the process started. Here’s the steps I went through to accomplish this. First download OpenSSL.

Next make sure you have the prerequisites installed:

Get the zipped contents of the OpenSSL into a working directory to build them. Then follow the standard config, make, and make install steps below.

[sourcecode language=”bash”]
./config
make
make test
make install
[/sourcecode]

Once you have that installed there are a number of actions you can perform. Here’s a few.

More to come in the near future. I’ve almost got this SSL mess straightened out and am putting together a more complete how-to.

References:

Exit mobile version