Archive for the ‘Apache’ Category

5 steps to create a self-signed SSL Certificate

Thursday, October 30th, 2008

Step 1: Generate a Private Key Command: openssl genrsa -des3 -out server.key 1024 Step 2: Generate a CSR Command: openssl req -new -key server.key -out server.csr Step 3: Generating a Self-Signed Certificate Command: openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt Step ...

Install Apache, MySQL, PHP and Perl in one shot using xampp.

Tuesday, July 22nd, 2008

In the past this software was called LAMPP but to avoid misconceptions we renamed it to »XAMPP for Linux«. So if you are seeking for LAMPP you're on the right track. ;) URL: http://www.apachefriends.org/en/xampp-linux.html

How can we improve apache server performance?

Saturday, December 1st, 2007

Apache server performance can be improved by adding additional hardware resources such as RAM, faster CPU etc. But, mostasdfasdf of the time, the same result can be achieved by custom configuration of the server. This article looks into getting maximum performance out of Apache with the existing hardware resources, specifically ...