Changes between Version 3 and Version 4 of Internal/LoginService/SSL


Ignore:
Timestamp:
Mar 9, 2012, 6:29:25 PM (12 years ago)
Author:
Olivera Tosic
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/LoginService/SSL

    v3 v4  
    77
    88 === Generate self-signed certificate ===
     9To create the self-signed certificate, run the following command
     10{{{
     11openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
     12}}}
     13The above command will prompt you to enter the passphrase. Once you enter the correct passphrase, your certificate will be created and it will be stored in the server.crt file
     14 ===Installing the Certificate ===
     15
     16You can install the key file server.key and certificate file server.crt, or the certificate file issued by your CA, by running following commands
     17
     18{{{
     19sudo cp server.crt /etc/ssl/certs
     20sudo cp server.key /etc/ssl/private
     21}}}