Cómo proteger a Apache con Let’s Encrypt en Ubuntu 16.04

Introducción Este tutorial le mostrará cómo configurar un certificado TLS / SSL de Let’s Encrypt en un servidor Ubuntu 16.04 que ejecute Apache como un servidor web. También cubriremos cómo automatizar el proceso de renovación de certificados. Los certificados SSL se utilizan en los servidores web para cifrar el tráfico entre el servidor y el cliente, proporcionando seguridad […]

How To Configure SSL/TLS for MySQL on Ubuntu 16.04

Introduction MySQL is the most popular open-source relational database management system in the world. Modern package managers have reduced some of the friction to getting MySQL up and running, but there is still some configuration that should be done after installation. One of the most important areas to spend some extra time on is security. […]

SSL Settings

[1] Create certificates first, refer to here. [2] Configure Apache2.

Activar SSL en Apache2 (Ubuntu 10.04)

# Instalamos Apache sudo aptitude install apache2 # Habilitamos el módulo SSL sudo a2enmod ssl # Habilitamos la configuración SSL por default sudo a2ensite default-ssl # Reiniciamos el servidor sudo /etc/init.d/apache2 restart Ya con esto queda habilitado, puedes probarlo entrando al localhost con https://127.0.0.1 Para crear  nuestro certificado, debemos seguir los siguientes pasos # Creamos […]