KB Tag: SSL
How To Redirect Apache NON-SSL to SSL
If you want to force your site visitors to view your web site over an SSL connection and you have your SSL vhost already properly created in Apache, you can add the following to your .htaccess file in the root of your site:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}...
By chris,
How to configure auto-update of Let’s Encrypt certificates with Nginx
Let’s Encrypt is a free, automated, and open certificate authority (CA), run for the public’s benefit. One of the features of Let’s Encrypt is ninety-day lifetimes for certificates. There are many tutorials how to automate the procedure of updating certificates.
All of them have their pros and cons. For example you must manually create folders and files or stop web-server for several minutes... I think I found one of ...
By ivan,