Changes between Version 3 and Version 4 of SystemAdministration/Security/TLS


Ignore:
Timestamp:
11/30/15 17:44:22 (9 years ago)
Author:
Sander Maijers
Comment:

ENHANCE: Describe the different bundles

Legend:

Unmodified
Added
Removed
Modified
  • SystemAdministration/Security/TLS

    v3 v4  
    1 = Creating a TLS certificate bundle
     1= Creating a TLS certificate
     2== Bundle for `ssl_certificate` (root, intermediate, site)
    23{{{
    34#!sh
     
    910dos2unix 'bundle.cer'
    1011}}}
     12
     13== Bundle for `ssl_trusted_certificate` (root, intermediate)
     14
     15{{{
     16#!sh
     17## as root:
     18cd '/root/certstore/wildcard-clarin-eu-new/' &&
     19printf '\n' > 'newline' &&
     20## Concatenate certificates in this order for Nginx
     21cat 'clarin.eu/cert/GeoTrustGlobalCA.cer' 'newline' 'clarin.eu/cert/RapidSSLSHA256CA-G3.cer' 'newline' > 'bundle.cer'
     22dos2unix 'trusted_bundle.cer'
     23}}}