Apache with SSL

Damien Hull dhull at digital-overload.net
Wed Jan 13 22:55:35 UTC 2010


IT WORKS!!! 

Thanks for the info... I wasn't sure what the .pem file was all about. I did some searching and figured it out. Anyway, my shopping cart is now encrypted. 


----- Original Message -----
From: "Stifan Kristi" <sugizo at japan.com>
To: "Ubuntu user technical support, not for general discussions" <ubuntu-users at lists.ubuntu.com>
Sent: Wednesday, January 13, 2010 12:46:53 PM (GMT-0900) Auto-Detected
Subject: Re: Apache with SSL


Damien Hull wrote: 

I'm trying to configure Apache2 with SSL. I did a lot of searching on the net and found instructions that don't work. Here's what I have...

1. Ubuntu 8.04 server
2. Apache2 LAMP configuration 
3. SSL Cert from GoDaddy - mydomain.crt & gd_bundle.crt
4. mod_ssl is loaded

How do I configure Apache so SSL works for part of my domain? 
1. Main site doesn't need ssl
2. shop.mydomain.com needs ssl
3. Using virtual hosts

It would be nice if I could see someone's working Apache config. Update and Install Packages 
sudo apt-get update 
sudo apt-get install apache2 ssl-cert 

Create a Certificate SSL for Apache 
sudo mkdir /etc/apache2/ssl 
sudo make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/apache.pem 

Host name: ubuntu.linux.vmw 

Enable Apache 2 Module 
sudo a2enmod ssl 
sudo a2enmod rewrite 
sudo a2enmod suexec 

Create and Edit Virtual Host for SSL Website Configuration 
cp /etc/apache2/sites-available/default /etc/apache2/sites-available/ssl 
sudo vim /etc/apache2/sites-available/ssl 


NameVirtualHost *:443 
<virtualhost *:443> 
SSLEngine On 
SSLCertificateFile /etc/apache2/ssl/apache.pem 
ServerSignature On 

ServerAdmin sugizo at japan.com 

Enable SSL Virtual Host 
sudo a2ensite ssl 

Backup and Edit Apache Configuration 
cp /etc/apache2/apache2.conf /bkup/apache2.conf.ori 
sudo vim /etc/apache2/apache2.conf 


ServerAdmin sugizo at japan.com 
ServerName debian.linux.vmw 

Restart Apache Service 
sudo /etc/init.d/apache2 restart 

Test Apache 
Open Your Browser Type : http://debian 
or 
http://192.168.44.9 

Test Secure Apache 
Open Your Browser Type : https://debian 
or 
https://192.168.44.9 

-- 
ubuntu-users mailing list
ubuntu-users at lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users




More information about the ubuntu-users mailing list