Not entirely.  You could also either use a wildcard certificate
(although IE doesn't support dots in the wildcard portion) or
exclusively support the vhosts on modern browsers running TLS.
 


Thanks,

Rick Houser
Auto-Owners Insurance
Systems Support
(517)703-2580


 


________________________________

        From: Sam Carleton [mailto:scarle...@gmail.com] 
        Sent: Tuesday, June 02, 2009 9:44 AM
        To: modules-dev@httpd.apache.org
        Subject: Re: do I need a custom proxy?
        
        
        I did not mention that I am only interested in HTTPS, not HTTP.
It is my understanding that virtual host's don't work for HTTPS, is this
correct?
        
        Sorin Manolache wrote: 

                On Tue, Jun 2, 2009 at 14:45, Sam Carleton
<scarle...@miltonstreet.com> <mailto:scarle...@miltonstreet.com>  wrote:
                  

                        I do develop Apache Modules which is why I
thought to ask this question
                        here...
                        
                        I run a micro ISV out of my home and I only have
one external IP address.  I
                        need to have some services on Apache and others
on IIS.  How would I pull
                        this off since I only have one external IP
address?  My thought is create a
                        custom mod_proxy that will redirect some URL's
from the public facing Apache
                        to the internal IIS.  Is this the correct
approach or is there an approach
                        that does not require actual development?
                            

                
                Can't you create two virtual hosts or two locations on
your apache,
                one of them handling requests and the other forwarding
them to IIS?
                
                Something like
                
                <VirtualHost *>
                ServerName apache.my-domain.org
                </VirtualHost>
                <VirtualHost *>
                ServerName iis.my-domain.org
                ProxyPass / http://internal-IP-of-IIS-server/
                </VirtualHost>
                
                and you register apache.my-domain.org and
iis.my-domain.org as having
                the same IP address in the authoritative nameserver of
my-domain.org.
                
                or
                <Location /apache>
                </Location>
                <Location /iis>
                ProxyPass http://internal-IP-of-IIS-server/
                </Location>
                
                
                S
                
                  

Reply via email to