close Warning: Can't synchronize with repository "(default)" (/usr/svn/silverfile does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 11 and Version 12 of administration/system-admin


Ignore:
Timestamp:
Oct 7, 2009, 10:28:09 PM (13 years ago)
Author:
hank
Comment:

generate new SSL cert

Legend:

Unmodified
Added
Removed
Modified
  • administration/system-admin

    v11 v12  
    3939Note- This vim script is edited slightly to make symmetric encryption
    4040the default.  This is done by setting g:GPGPreferSymmetric= '''1'''
    41 in the script.
     41in the script.
     42
     43== Generate a new SSL Cert ==
     441) Generate the key (2048 bit)
     45{{{
     46openssl genrsa -des3 -out silverfilecorp.com.key 2048
     47}}}
     48
     49Specify anything for the key passphrase, ie "silver", it will be removed later.
     50
     512) Generate the certificate request for the root authority - i.e. godaddy
     52{{{
     53openssl req -new -key silverfilecorp.com.key -out silverfilecorp.com.csr
     54}}}
     55
     563) Remove passphrase from key.  This will enable apache to back online without
     57any intervention. 
     58{{{
     59cp silverfilecorp.com.key silverfilecorp.com.key.encrypted
     60openssl rsa -in silverfilecorp.com.key.encrypted -out silverfilecorp.com.key
     61}}}
    4262
    4363=== Disk Usage Tools ===