VirtualHost not working on WindowsNT
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > WebSphere > WebSphere HTTP Server > VirtualHost not working on WindowsNT




Pages (2): [1] 2 »   Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    VirtualHost not working on WindowsNT  
Lee Timms


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-20-04 10:33 AM

Hello, I am trying to set up VirtualHost's using the same IP and different
domain names. This is being attempted on a WindowsNT Server machine and no
matter what I do it does not want to work. It seems that the VirtualHost's
are not being processed. Has anyone seen this problem and if so what did you
do to resolve the issue.







[ Post a follow-up to this message ]



    Re: VirtualHost not working on WindowsNT  
Lee Timms


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-20-04 10:33 AM

The version of websphere is 3.5
"Lee Timms" <lee@dontquoteme.com> wrote in message
news:c15j9q$3koi$1@news.boulder.ibm.com...
> Hello, I am trying to set up VirtualHost's using the same IP and different
> domain names. This is being attempted on a WindowsNT Server machine and no
> matter what I do it does not want to work. It seems that the VirtualHost's
> are not being processed. Has anyone seen this problem and if so what did
you
> do to resolve the issue. >
>







[ Post a follow-up to this message ]



    Re: VirtualHost not working on WindowsNT  
Ken Hygh


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-21-04 04:33 AM

Lee Timms wrote:
> Hello, I am trying to set up VirtualHost's using the same IP and different
> domain names. This is being attempted on a WindowsNT Server machine and no
> matter what I do it does not want to work. It seems that the VirtualHost's
> are not being processed. Has anyone seen this problem and if so what did y
ou
> do to resolve the issue.
>
>

What have you configured? What doesn't work?

Ken






[ Post a follow-up to this message ]



    Re: VirtualHost not working on WindowsNT  
Ray McVay


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-22-04 10:33 AM

Lee Timms wrote:

> The version of websphere is 3.5
> "Lee Timms" <lee@dontquoteme.com> wrote in message
> news:c15j9q$3koi$1@news.boulder.ibm.com...
> 
>
> you
> 
>
>

We run that way with no problem. You can't do it just from your WAS box,
though, you have to set those names up correctly in your DNS, too.





[ Post a follow-up to this message ]



    Re: VirtualHost not working on WindowsNT  
Lee Timms


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-23-04 01:33 PM

What is not working is the directory redirection that is expected from the
virtual host setup. What I get is sent to the same root directory as the
main site.
The following is the VirtualHost block that should cause the redirect but I
keep getting sent to the main sites root directory.
<VirtualHost *>
ServerName www.dontquoteme.tv
ServerAlias dontquoteme.tv
DocumentRoot E:/DontQuoteMe/htdocs
</VirtualHost>
"Ken Hygh" <kenhygh@nc.rr.com> wrote in message
news:c17h34$6164$1@news.boulder.ibm.com...
> Lee Timms wrote: 
different 
no 
VirtualHost's 
you 
>
> What have you configured? What doesn't work?
>
> Ken
>







[ Post a follow-up to this message ]



    Re: VirtualHost not working on WindowsNT  
Sunit Patke


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-23-04 01:33 PM

If you want to use different DocumentRoot for different virtual hosts, then
why are you using <VirtualHost *>?

Sunit

"Lee Timms" <lee@dontquoteme.com> wrote in message
news:c1dqpn$76ve$1@news.boulder.ibm.com...
> What is not working is the directory redirection that is expected from the
> virtual host setup. What I get is sent to the same root directory as the
> main site.
> The following is the VirtualHost block that should cause the redirect but
I
> keep getting sent to the main sites root directory.
> <VirtualHost *>
> ServerName www.dontquoteme.tv
> ServerAlias dontquoteme.tv
> DocumentRoot E:/DontQuoteMe/htdocs
> </VirtualHost>
> "Ken Hygh" <kenhygh@nc.rr.com> wrote in message
> news:c17h34$6164$1@news.boulder.ibm.com... 
> different 
and
> no 
> VirtualHost's 
did
> you 
>
>







[ Post a follow-up to this message ]



    Re: VirtualHost not working on WindowsNT  
Aaron W Morris


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-23-04 05:33 PM



Lee Timms wrote:

> What is not working is the directory redirection that is expected from the
> virtual host setup. What I get is sent to the same root directory as the
> main site.
> The following is the VirtualHost block that should cause the redirect but 
I
> keep getting sent to the main sites root directory.
> <VirtualHost *>
> ServerName www.dontquoteme.tv
> ServerAlias dontquoteme.tv
> DocumentRoot E:/DontQuoteMe/htdocs
> </VirtualHost>
> "Ken Hygh" <kenhygh@nc.rr.com> wrote in message
> news:c17h34$6164$1@news.boulder.ibm.com...
> 
>
> different
> 
>
> no
> 
>
> VirtualHost's
> 
>
> you
> 
>
>
>

Do you have a "NameVirtualHost" directive in your config?

--
Aaron W Morris <aaronmorris@mindspring.com> (decep)






[ Post a follow-up to this message ]



    Re: VirtualHost not working on WindowsNT  
Lee Timms


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-24-04 05:33 AM

It is my belief that the virtual will do a reverse lookup on the ServerName
in this Virtual Host block. From my understanding when using NameVirtualHost
the server always does a reverse lookup. By the way since I did not show it
in the code snippet I have "NameVirtualHost" set up in my configuration
file.

"Sunit Patke" <nospam.patke@nospam.com> wrote in message
news:c1ds38$3i3e$1@news.boulder.ibm.com...
> If you want to use different DocumentRoot for different virtual hosts,
then
> why are you using <VirtualHost *>?
>
> Sunit
>
> "Lee Timms" <lee@dontquoteme.com> wrote in message
> news:c1dqpn$76ve$1@news.boulder.ibm.com... 
the 
but
> I 
> and 
> did 
>
>







[ Post a follow-up to this message ]



    Re: VirtualHost not working on WindowsNT  
Lee Timms


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-24-04 05:33 AM

Yes I do have "NameVirtualHost *" set up in my httpd.conf file.

"Aaron W Morris" <aaronmorris@mindspring.com> wrote in message
news:c1eaif$8bau$1@news.boulder.ibm.com...
>
>
> Lee Timms wrote:
> 
the 
but I 
did 
>
> Do you have a "NameVirtualHost" directive in your config?
>
> --
> Aaron W Morris <aaronmorris@mindspring.com> (decep)
>







[ Post a follow-up to this message ]



    Re: VirtualHost not working on WindowsNT  
Jerrel Adcock


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
02-24-04 02:33 PM

Lee,

Have you tried this with an ip address specified on NameVirtualHost and
<VirtualHost>?


Lee Timms wrote:
> It is my belief that the virtual will do a reverse lookup on the ServerNam
e
> in this Virtual Host block. From my understanding when using NameVirtualHo
st
> the server always does a reverse lookup. By the way since I did not show i
t
> in the code snippet I have "NameVirtualHost" set up in my configuration
> file.
>
> "Sunit Patke" <nospam.patke@nospam.com> wrote in message
> news:c1ds38$3i3e$1@news.boulder.ibm.com...
> 
>
> then
> 
>
> the
> 
>
> but
> 
>
>





[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 04:45 PM.      Post New Thread    Post A Reply      
Pages (2): [1] 2 »   Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register