Changes between Version 9 and Version 10 of faq/security/setup-certificate


Ignore:
Timestamp:
Jul 27, 2014, 12:27:49 AM (10 years ago)
Author:
Enrique Rosas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • faq/security/setup-certificate

    v9 v10  
    22= Configure your web site to use an x509 (aka SSL or https) certificate =
    33
    4 One you have [wiki:faq/security/get-certificate obtained a security certificate] from a certificate authority, you can start using by:
     4Ones you have [wiki:faq/security/get-certificate obtained a security certificate] from a certificate authority, you can start using by:
    55
    66 1. Add a new https web config that includes the following:
     
    1212SSLCertificateChainFile /path/to/key/intermediate.crt
    1313}}}
    14  1. Add a `*` to the IP field of your web configuration.  We use a method called [https://en.wikipedia.org/wiki/Server_Name_Indication Server Name Indication].  Though if you would prefer your own IP address you may request it.
     14 2. Add a `*` to the IP field of your web configuration.  We use a method called [https://en.wikipedia.org/wiki/Server_Name_Indication Server Name Indication].  Though if you would prefer your own IP address you may request it.
     15 3. And don't forget to include the DocumentRoot related inscriptions to the new web config:
     16{{{
     17DocumentRoot /home/members/name/sites/my-site.net/web
     18CustomLog /home/members/name/sites/my-site.net/logs/web.log combined
     19ErrorLog /home/members/name/sites/my-site.net/logs/error.log
     20ScriptAlias /cgi-bin /home/members/name/sites/my-site.net/cgi-bin
     21}}}
    1522
    1623If you are replacing your key and certificate, you should already have a web config with this information - you will only need to change the path to the keys and certificates, replacing the paths to your old files with the path to your newly generated files.