http://tinyurl.com/npdqhok Click and save 25% when you buy SSL.
Create your own SSL certificates and compile from source on Knoppix Linux Apache 2 server. 1. Download openssl sources cd /home/knoppix wget http://raider.grcc.edu/~smachaje/co246/openssl.tgz tar -xzvf openssl.tgz 2. Install Apache server. Use the following configuration options: SSL Documentation: http://httpd.apache.org/docs/2.0/ssl/ssl_intro.html Download Apache source files and navigate into the source directory. ./configure --prefix=/home/knoppix/apache --enable-ssl --with-ssl=/home/knoppix/openssl 3. Create your own SSL certificates. cd /home/knoppix/apache/conf openssl req -new -x509 -nodes -out server.crt -keyout server.key 4. Change the following configuration options in ssl.conf (an extension of httpd.conf): SSLCertificateFile /home/knoppix/apache/conf/server.crt SSLCertificateKeyFile /home/knoppix/apache/conf/server.key 5. Start server as root to run on port 80: su - cd /home/knoppix apache/bin/apachectl startssl 6. Verify the ports which your server is configured to operate on. If the ports are 80 and 443 then start your server as root and use the following URLs to verify the system: http://localhost/ https://localhost/ 7. You can match the server name in the certificate with your server name by editing /etc/hosts file: 127.0.0.1 www.co246.com 127.0.0.1 www.example.com
Niciun comentariu:
Trimiteți un comentariu