Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Jun 2004 13:15:29 -0500
From:      "Andras Kende" <andras@kende.com>
To:        "'Goodleaf, John'" <JGoodleaf@ctiseattle.com>, <freebsd-questions@freebsd.org>
Subject:   RE: web serving
Message-ID:  <20040614181540.BEE8A43D2D@mx1.FreeBSD.org>
In-Reply-To: <CE08B4435DAA314CB549C1DBA2677AAC148258@CTI-501EXCHANGE.celltherapeutics.local>

next in thread | previous in thread | raw e-mail | index | archive | help
 

-----Original Message-----
From: owner-freebsd-questions@freebsd.org
[mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Goodleaf, John
Sent: Monday, June 14, 2004 11:22 AM
To: freebsd-questions@freebsd.org
Subject: OT: web serving


   Please reply to john@goodleaf.net
   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.
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"



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






Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040614181540.BEE8A43D2D>