SSL Certificate Creation

From Antiflux Wiki

(Difference between revisions)
Jump to: navigation, search
m (log.antiflux.org.key -> hostname.key)
Line 2: Line 2:
<ol>
<ol>
<li><code>openssl genrsa -out /etc/ssl/private/hostname.key 1024</code></li>
<li><code>openssl genrsa -out /etc/ssl/private/hostname.key 1024</code></li>
-
<li><code>openssl req -new -key /etc/ssl/private/log.antiflux.org.key -out /etc/ssl/antiflux/hostname.csr</code></li>
+
<li><code>openssl req -new -key /etc/ssl/private/hostname.key -out /etc/ssl/antiflux/hostname.csr</code></li>
<li><code>cd /etc/ssl/antiflux</code></li>
<li><code>cd /etc/ssl/antiflux</code></li>
<li><code>make sign</code></li>
<li><code>make sign</code></li>

Revision as of 04:21, 14 June 2005

To generate a certificate for "hostname" signed with our CA key:

  1. openssl genrsa -out /etc/ssl/private/hostname.key 1024
  2. openssl req -new -key /etc/ssl/private/hostname.key -out /etc/ssl/antiflux/hostname.csr
  3. cd /etc/ssl/antiflux
  4. make sign
  5. mv hostname.cert /etc/ssl/certs/hostname.crt

Note: "make sign" will delete the CSR, so make a copy ahead of time if you're going to want it later.

Personal tools