Blog

Thoughts, insights all hot off the virtual press.

Tutorial | 25 November 2011

SSH tunnelling and connecting to a remote database

In this video our CTO, Cristiano, shows you a neat trick called SSH tunnelling in the context of connecting to a remote database.
Full Story
Tutorial | 05 November 2011

Installing an SSL certificate on Apache (Part 3 of 3)

SSL certificate installation onto an Apache webserver. This is the third and final of the three-part video where we show how to integrate the certificate. Check out part 1 at:  How to install an SSL certificate onto an Apache …   Check out part 2 at: How to install an SSL certificate onto an Apache …   If you want to know more about Apache Webserver you can visit here: http://httpd.apache.org If you want to know how to generate a self-signed SSL certificate, check out our video at How to create a self-signed certificate…  
Full Story
Tutorial | 05 November 2011

SSL certificate installation on Apache (Part 2 of 3)

This is the second of a three-part video where we show how to install an SSL certificate onto an Apache webserver. If you want to know more about Apache Webserver you can visit here: http://httpd.apache.org See part 1: https://www.youtube.com/watch?v=yjZOyANmKWU&t=0s  See part 2: https://www.youtube.com/watch?v=nuUTdMdNoO8&t=0s 
Full Story
Tutorial | 05 November 2011

SSL certificate installation on Apache (Part 1 of 3)

This is the first of a three-part video where we show how to install an SSL certificate onto an Apache webserver. If you want to know more about Apache Webserver you can visit here: http://httpd.apache.org See part 2: https://www.youtube.com/watch?v=BS0AK_qJ4OE See part 3: https://www.youtube.com/watch?v=nuUTdMdNoO8
Full Story
Tutorial | 19 October 2011

Openssl command tools: how to create a self-signed certificate?

This short video shows how to create a self-signed certificate using the openssl command tools. For more information on openssl see http://openssl.org. Summary: create a Certificate Signing Request (CSR) with the command: openssl req -new -newkey rsa:2048 -nodes -keyout localhost.key -out localhost.csr self-sign the Certificate with the command: openssl x509 -req -days 365 -in localhost.csr -signkey localhost.key -out localhost.crt For more tutorials, see https://brightminded.com/updates/
Full Story