Changes between Version 97 and Version 98 of NewLiveServer


Ignore:
Timestamp:
04/30/12 13:14:45 (5 years ago)
Author:
chris
Comment:

updated as per ticket:409

Legend:

Unmodified
Added
Removed
Modified
  • NewLiveServer

    v97 v98  
    9999=== HTTPS === 
    100100 
    101 The HTTPS !VirtualHosts have the following directives: 
     101The HTTPS !VirtualHosts have the following directives (see ticket:409): 
    102102 
    103103{{{ 
    104104SSLEngine on 
    105 SSLCipherSuite HIGH 
    106105SSLProtocol all -SSLv2 
     106SSLHonorCipherOrder On 
     107SSLCipherSuite RC4-SHA:HIGH:!ADH:!SSLv2:!aNULL 
    107108SSLCertificateFile      /etc/ssl/transitionnetwork.org/transitionnetwork.org.pem 
    108109SSLCertificateChainFile /etc/ssl/transitionnetwork.org/gandi.pem 
     
    116117}}} 
    117118 
    118 And the gandi.pem contains the cert and the chain of root certificates: 
    119  
    120 {{{ 
    121 wget http://crt.gandi.net/GandiStandardSSLCA.crt 
    122 wget http://crt.usertrust.com/UTNAddTrustServer_CA.crt 
    123 wget http://crt.usertrust.com/AddTrustExternalCARoot.crt 
     119And the gandi.pem contains the the chain of root certificates: 
     120 
     121{{{ 
     122wget http://crt.gandi.net/GandiStandardSSLCA.crt -O GandiStandardSSLCA.crt 
     123wget http://crt.usertrust.com/UTNAddTrustServer_CA.crt -O UTNAddTrustServer_CA.crt 
     124wget http://crt.usertrust.com/AddTrustExternalCARoot.crt -O AddTrustExternalCARoot.crt 
     125 
    124126openssl x509 -inform DER -in GandiStandardSSLCA.crt -out GandiStandardSSLCA.pem 
    125127openssl x509 -inform DER -in AddTrustExternalCARoot.crt -out AddTrustExternalCARoot.pem 
    126128openssl x509 -inform DER -in UTNAddTrustServer_CA.crt -out UTNAddTrustServer_CA.pem 
    127 cat transitionnetwork.org.crt > gandi.pem 
    128 cat GandiStandardSSLCA.pem >> gandi.pem 
     129 
     130cat GandiStandardSSLCA.pem > gandi.pem 
     131cat UTNAddTrustServer_CA.pem >> gandi.pem 
    129132cat AddTrustExternalCARoot.pem >> gandi.pem 
    130 cat UTNAddTrustServer_CA.pem >> gandi.pem 
    131133}}} 
    132134