Apache y SSL en Ubuntu

Pequeño laboratorio para instalar Apache y SSL en un servidor Ubuntu y crear varios sites, unos securizados con SSL y otros no. Ponemos password al usuario Root sudo passwd Entramos como Root y actualizamos los repositorios apt-get update Instalar ssh apt-get install openssh-server Instalar apache2 #Comprobamos que tenemos las fuentes cat /etc/apt/sources.list #Instalamos Apache2 apt-get … Continue reading Apache y SSL en Ubuntu

Enable SSL in Apache2

1. Install mod_ssl and openssl in the Apache server (for example download mod_ssl from http://www.devside.net/download/mod_ssl.zip) 2. Uncomment the following lines in $apache_home$\conf\Httpd.conf and save the file: LoadModule ssl_module modules/mod_ssl.so Include conf/extra/httpd-ssl.conf 3. Copy the mycert.key and mycert.crt to /conf directory as server.key and server.crt 4. Remove the key password from the server.key Copy server.key server_copy.key … Continue reading Enable SSL in Apache2