1. this is a bit off topic for questions like that, it's 
   better go to the apache list

2. you don't have to setup 2 apaches:
   just define two virtual hosts in httpd.conf:

    NameVirtualHost 111.22.33.44

    <VirtualHost 111.22.33.44:80>
      ServerName www.domain.tld
      DocumentRoot /www/domain
    </VirtualHost>

    <VirtualHost 111.22.33.44:443>
      ServerName www.domain.tld
      DocumentRoot /www/domain
    </VirtualHost>

    <VirtualHost 111.22.33.44:80>
      ServerName www.otherdomain.tld
      DocumentRoot /www/otherdomain
    </VirtualHost>

    <VirtualHost 111.22.33.44:443>
      ServerName www.otherdomain.tld
      DocumentRoot /www/otherdomain
    </VirtualHost>

    see: http://httpd.apache.org/docs/vhosts/name-based.html

3. To start apache with a different config file use
   apache -f <file>

-----Ursprüngliche Nachricht-----
Von: Lars Nielsen Lind [mailto:[EMAIL PROTECTED]]
Gesendet: Donnerstag, 19. Juli 2001 14:32
An: [EMAIL PROTECTED]
Betreff: SSL Apache & Tomcat (NameBased VirtualHosts)


I want to use SSL with my Apache & Tomcat (mod_jk) - NameBased VirtualHosts.
 
I have read that I then should make to configuration files for the Apache
Web Server. One for communicating with port 80 (without SSL) and one for
communicating with port 443 (with SSL). Finally I shall start two instances
of the Apache Web Server - one that handles http requests and another that
handles https requests.
 
1.) Normally the httpd.conf file is placed in /etc/httpd/conf/httpd.conf.
Where shall I place the new SSL configuration file?
 
2.) How do I start two instances of the Apache Web Server - that uses their
own configuration files?
 
Thanks
 
Lars Nielsen Lind
 

Reply via email to