Archive for the ‘Apache’ Category
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 ...
Posted in Apache, Basic of Web Technology | No Comments »
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
Posted in Apache, MySQL, PHP, Perl | No Comments »
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 ...
Posted in Apache | No Comments »