Hi all,
I have one site running on ssl and i want to configure second. How can i do this? My first site is configured on port 443.
here is ports.conf
Code:
ServerName kdelchev.com
NameVirtualHost *:80
Listen 80
<IfModule mod_ssl.c>
# SSL name based virtual hosts are not yet supported, therefore no
# NameVirtualHost statement here
Listen 443
</IfModule>
here is my first site
Code:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
ServerName kodeimage.kdelchev.com
ServerAlias kodeimage.kdelchev.com
DocumentRoot /var/www/kodeimage
...
and the second i want to use with ssl
Code:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
ServerName kodevideo.kdelchev.com
ServerAlias kodevideo.kdelchev.com
DocumentRoot /var/www/kodevideo
...
The sites should be available on https://<sitename>.kdelchev.com
I am using debian lenny
Thanks!