Skip to main content

Posts

Showing posts from October, 2014

Configurar Apache + SSL + certificados autofirmados (en Linux/Ubuntu)

Hola mundo, 0. Recordemos que al crear un certificado necesitaremos rellenar estos datos: Country Name (2 letter code) [AU]:   State or Province Name (full name) [Some-State]:   Locality Name (eg, city) []:   Organization Name (eg, company) [Internet Widgits Pty Ltd]:   Organizational Unit Name (eg, section) []:   Common Name (eg, YOUR name) []:   Email Address []:   Please enter the following 'extra' attributes  to be sent with your certificate request   A challenge password []:   An optional company name []:   1. Lo primero sera crear una Autoridad Certificadora autofirmada: openssl genrsa -des3 -out ca.key 4096 openssl req -new -x509 -days 7300 -key ca.key -out ca.crt 2. Seguir pasos para instalar SSL y Apache: http://betatwits.wordpress.com/2010/07/21/activar-ssl-en-apache2-ubuntu-10-04/ 3. Seguir pasos para instalar SSH: http://www.cyberciti.biz/faq/ubuntu-linux-openssh-server-installation-and-configuration/ 4. Generar un CSR: http://www.mrvoip.co