-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Goodleaf, John
Sent: Monday, June 14, 2004 11:22 AM
To: [EMAIL PROTECTED]
Subject: OT: web serving


   Please reply to [EMAIL PROTECTED]
   So I have a FreeBSD server at home serving some web pages, mostly web
   mail (Apache). It's running on a DSL line behind a gateway that
   forwards port 80 requests to it. Now here's the problem. I need to
   serve also from an IIS .NET server (it's for my girlfriend; don't bug
   me). So my question: How do I serve some things from the IIS server
   and some from the BSD server?  Do I set up some kind of proxying?
   I'm sure there are three hundred solutions, but this is not something
   I've ever had to learn about. I'm willing to RTFM; I just want to be
   pointed in the right direction.
   Thanks,
   John
     _________________________________________________________________

   This e-mail message is for the sole use of the intended recipient(s)
   and may contain confidential and privileged information. Any
   unauthorized review, use, disclosure or distribution is prohibited. If
   you are not the intended recipient, please contact the sender by reply
   e-mail and destroy all copies of the original message.
_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



Hello,

You could probably do something like:

Forward port 80 to freebsd apache and set 
A proxy from there to the IIS at 192.168.1.50 

<Location /iis/>
ProxyPass http://192.168.1.50:80/
ProxyPassReverse http://192.168.1.50:80/
</Location>

This would work like www.yourserver.com/iis

But probably you could put inside a <virtualhost> too if needed...

Here in detail:
http://www.zope.org/Members/regebro/Zope_and_Apache




Best regards,

Andras Kende
http://www.kende.com




_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to