21 | | You have several options when choosing to configure your web sites. Each site will have and does need at least one web configuration item. |
22 | | |
23 | | === auto === |
24 | | |
25 | | The best option is to use "auto." When your web site is configured to use auto, then: |
26 | | |
27 | | * A [https://letsencrypt.org/ letsencrypt] certificate will be automatically generated at no cost for all the domains in your web configuration (both Server Name and Server Alias). |
28 | | * This certificate will be automatically updated every three months |
29 | | * All requests sent via http will be automatically redirected to https |
30 | | |
31 | | === http === |
32 | | |
33 | | If you prefer, you can opt instead to have an http-only site by choosing http. |
34 | | |
35 | | === https === |
36 | | |
37 | | You may also wish to use your own certificates, in which case select "https" and specify the `SSLEngine On`, `SSLCertificateKeyFile`, and `SSLCertificateFile` parameters in your configuration that point to the appropriate files. If your web configuration has only an https item, you won't have an http site at all. Note that this means anyone trying to reach your site with http will get an "Error 404 Server not found" message. |
38 | | |
39 | | === Both http and https === |
40 | | |
41 | | You can also choose to have a different web configuration for http and https or control the redirecting in a more fine-tuned way. For sites that have https enabled with a certificate that they purchased or obtained themselves, their web configuration will have two items: one for each http and https. |
42 | | |
43 | | == What if I already have an https web site? == |
44 | | |
45 | | You can easily convert your site from an https web site to an auto web site. |
46 | | |
47 | | If you have both an http and an https web configuration, you must first delete the http one. |
48 | | |
49 | | Then, edit the https site, remove the SSL lines, and change it to auto. |
50 | | |
51 | | |
52 | | == Do I need to make any additional changes to my website internal configuration? == |
53 | | |
54 | | This depends on how your website has been created. For WordPress sites it is necessary to [https://support.mayfirst.org/wiki/how-to/wordpress/change-site-url change the siteurl] and any internal references to the http version of the site to the https version. If you are using Drupal and you have explicity set the {{{$base_url}}} variable in your {{{default/settings.php}}} file you will need to update that value, otherwise the change should be automatic. html only sites will have to have their internal URL's updated manually. |
| 28 | Our control panel is integrated with a free services called [https://letsencrypt.org/ Let's Encrypt]. They provide automated 3 month certificates free of charge. We have a regular scheduled job that will automatically renew your certificates every three months to ensure they are kept up to date. |